DevelopersAPI referenceFormsSubmissions
List submissions
Non-spam submissions by default; pass includeSpam=true for everything. created_at descending, limit 500. Submissions are children of the form, so a teammate who can read a shared form can read its inbox.
View as MarkdownAuthorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
id*string
Query Parameters
includeSpam?"true"
Spam included only when exactly "true"
Value in
- "true"
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/forms/string/submissions"{ "submissions": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "formId": "string", "data": { "property1": "string", "property2": "string" }, "isSpam": true, "spamReason": "string", "ip": "string", "referrer": "string", "userAgent": "string", "created": "2019-08-24T14:15:22Z" } ]}