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
Extra metadata about the submissions response.
Pagination metadata.