GET
/
submissions
/
{submissionId}
curl --request GET \
  --url https://app.formbox.app/api/v1/submissions/{submissionId} \
  --header 'api-key: <api-key>'
{
  "id": "<string>",
  "formId": "<string>",
  "isSpam": true,
  "answers": [
    {
      "id": "<string>",
      "label": "<string>",
      "value": "<string>"
    }
  ],
  "files": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "size": 123,
      "url": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Headers

api-key
string
required

The API key.

Path Parameters

submissionId
string
required

The unique ID of the submission to retrieve.

Example:

"clux0rgak00011..."

Query Parameters

formId
string
required

The unique ID of the form.

Response

200
application/json

A specific submission.

The response is of type object.