DevelopersAPI referenceFormsSubmissions
Mark spam / not spam
Flips the spam flag and adjusts the form's spamCount. Returns a message, not the submission. Owner-only — triaging a shared form's inbox returns 403.
View as MarkdownAuthorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
id*string
sid*string
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X PATCH "https://example.com/v1/forms/string/submissions/string" \ -H "Content-Type: application/json" \ -d '{ "isSpam": true }'{ "message": "string"}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.
Delete a submission
Deletes the submission and decrements the form's counters. Owner-only — deleting from a shared form's inbox returns 403.