cURL
curl --request GET \ --url https://app.formbox.app/api/v1/submissions \ --header 'api-key: <api-key>'
{ "data": [ { "id": "<string>", "formId": "<string>", "isSpam": true, "createdAt": "<string>", "updatedAt": "<string>", "answers": [ { "id": "<string>", "label": "<string>", "value": "<string>" } ], "files": [ { "id": "<string>", "name": "<string>", "type": "<string>", "size": 123, "url": "<string>", "createdAt": "<string>", "updatedAt": "<string>" } ] } ], "meta": { "total": 123, "totalInbox": 123, "totalSpam": 123 }, "pagination": { "totalPages": 123, "currentPage": 123, "nextPage": 123, "previousPage": 123 } }
Retrieve a paginated list of submissions for a given form for the authenticated organization.
The API key.
The unique ID of the form.
Search for a submission by its content.
The page number for pagination.
1
The number of items per page.
x <= 100
50
A list of submissions.
The list of submissions.
Show child attributes
The unique ID of the submission.
The ID of the form.
Whether the submission is spam.
The date the submission was created.
The date the submission was last updated.
The answers for the submission.
The answer ID.
The answer label.
The answer value.
The files for the submission.
The file ID.
The file name.
The file type.
The file size in bytes.
The file URL.
The date the file was created.
The date the file was last updated.
Extra metadata about the submissions response.
The total number of submissions.
The total number of inbox submissions.
The total number of spam submissions.
Pagination metadata.
The total number of pages.
The current page number.
The next page number.
The previous page number.