cURL
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>" }
Retrieve a specific submission for a given form for the authenticated organization.
The API key.
The unique ID of the submission to retrieve.
"clux0rgak00011..."
The unique ID of the form.
A specific submission.
The response is of type object.
object