> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getaptly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit a completed form



## OpenAPI

````yaml /portal/openapi.yaml post /forms/submit
openapi: 3.0.3
info:
  title: Aptly Portal API
  description: >
    HTTP API for the Aptly rental application screening portal. Used by
    prospective tenants, showing agents, and property management staff.
  version: 1.0.0
servers:
  - url: https://app.getaptly.com/api/portal
    description: Production
  - url: https://www.workturbo.net/api/portal
    description: Staging
  - url: http://localhost:3000/api/portal
    description: Development
security: []
paths:
  /forms/submit:
    post:
      tags:
        - Forms
      summary: Submit a completed form
      operationId: post-forms-submit
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - formId
                - cardId
                - boardId
                - data
              properties:
                formId:
                  type: string
                cardId:
                  type: string
                boardId:
                  type: string
                data:
                  type: object
                  additionalProperties: true
      responses:
        '200':
          description: Submitted
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  message:
                    type: string
      security: []

````