Retrieve a submission and its answers.

Settings:

URL

Method

https://online.99digital.co.il/api/v1/accounts/{account_id}/forms/{form_id}/submissions/{submission_id}

JSON via GET

Authorization:

Header Parameter

Description

api_access_token

User API key; access depends on the user's permissions.

Path Parameters:

Parameter

Description

Required

account_id

Account identifier.

Yes

form_id

Form identifier in the path.

Yes

submission_id

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

id

Submission identifier (UUID string).

form_id

Associated form identifier (string).

status

Submission status.

created_at

Creation timestamp in ISO 8601 format.

updated_at

Last update timestamp in ISO 8601 format.

submitted_at

Submission timestamp in ISO 8601 format.

answers

Array of recorded answers; may contain personal information.

answers[].field_id

Identifier of the answered form field.

answers[].value

Answer value.

answers[].type

Field type.