List a form's submissions
const url = 'https://api.deploybase.eu/api/v1/api/v1/forms/example/submissions';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.deploybase.eu/api/v1/api/v1/forms/example/submissions \ --header 'Authorization: <Authorization>'Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ”Form ID
Query Parameters
Section titled “ Query Parameters ”Inbox (default), spam or trash
Page number (default: 1)
Items per page (default: 20, max: 100)
Responses
Section titled “ Responses ”OK
object
object
object
object
Counted tracks whether this counted against the team’s monthly quota. Ham only.
Data is the submitted payload minus the reserved _-prefixed control fields.
NOTE: this is a Go map, so field order is not preserved — the order the visitor’s form declared its fields is lost at insert. Anything rendering these must impose its own order: CSV export sorts the key union, and encoding/json sorts on marshal.
object
NotifiedAt records when the notification worker finished handling this row (email sent, digested, or deliberately skipped). NULL = pending.
Subject is the sanitized _subject control field (CR/LF stripped at ingest), used only as an email subject override by the notification worker. NULL when the visitor sent none.
Example
{ "data": { "submissions": [ { "status": "inbox" } ] }}Bad Request
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Unauthorized
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Forbidden
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Not Found
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}