v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Forms::Submission

Create Submission

Add a new submission to a form

post/forms/{form_id}/submissions

Path parameters

form_idinteger required

Request body

Example request

{
  "forms_submission": {
    "forms_submission": {
      "contact_id": 5
    }
  }
}

Response

Created

idinteger

Submission ID

public_idstring nullable

Submission public ID

form_idinteger

Form ID

contact_idinteger nullable

Contact

created_atstring date-time nullable

Added

updated_atstring date-time nullable

Updated

Example response

{
  "id": 6,
  "public_id": "tWxHeY",
  "form_id": 15,
  "contact_id": 5,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}