Retrieve a submission and its answers.
Settings:
URL | Method |
|---|---|
| JSON via GET |
Authorization:
Header Parameter | Description |
|---|---|
| User API key; access depends on the user's permissions. |
Path Parameters:
Parameter | Description | Required |
|---|---|---|
| Account identifier. | Yes |
| Form identifier in the path. | Yes |
| Submission identifier from the list response. | Yes |
Request Example:
curl -s -H "api_access_token: $TOKEN" \
"$BASE_URL/api/v1/accounts/$ACCOUNT_ID/forms/$FORM/submissions/$SUBMISSION"Response:
Contact details have been replaced with sample values.
{
"id": "000000-0000-0000-0000-000000000",
"form_id": "1",
"status": "completed",
"created_at": "2026-09-22T11:35:24.836Z",
"updated_at": "2026-09-22T11:35:39.344Z",
"submitted_at": "2026-09-22T11:35:39.344Z",
"answers": [
{"field_id": "text", "value": "Example answer", "type": "text"},
{"field_id": "email", "value": "person@example.com", "type": "email"},
{"field_id": "phone", "value": "+12025550123", "type": "phone"},
{"field_id": "textarea", "value": "Example message", "type": "textarea"}
]
}Response-Explain:
Parameter | Description |
|---|---|
| Submission identifier (UUID string). |
| Associated form identifier (string). |
| Submission status. |
| Creation timestamp in ISO 8601 format. |
| Last update timestamp in ISO 8601 format. |
| Submission timestamp in ISO 8601 format. |
| Array of recorded answers; may contain personal information. |
| Identifier of the answered form field. |
| Answer value. |
| Field type. |