Skip to content

Form Submissions โ€‹

Stored records of every completed form submission. Submissions are produced automatically by POST /api/form/{id}; these endpoints are the read and prune surface for inspecting and cleaning historical data.

Scopes โ€‹

ScopeReach
form_submissions:readListing, reading, viewing filters.
form_submissions:writeDeleting submission records.

Endpoints โ€‹

List Form Submissions โ€‹

GET /api/form/history/

Returns a page of submission records.

Required scope: form_submissions:read ยท also accepts API key

Query parameters โ€” standard pagination set; see Conventions โ€บ Pagination. Defaults: sort_by=created, sort_order=desc, hydrate=true.

Response 200 โ€” FormSubmissionInDbCursorPage

Get Form Submission Filter Metadata โ€‹

GET /api/form/history/filters

Returns filter/operator/sort options for List Form Submissions.

Required scope: form_submissions:read

Response 200 โ€” open metadata object.

Get Form Submission by ID โ€‹

GET /api/form/history/{id}

Returns a single submission record โ€” the full payload of answers and file references.

Required scope: form_submissions:read ยท also accepts API key

Path parameters

NameTypeRequiredDescription
idstringyesSubmission ID.

Response 200 โ€” FormSubmissionRead

Delete Form Submission by ID โ€‹

DELETE /api/form/history/{id}

Permanently removes a submission record. Note that any Factory assemblies that consumed this submission are not affected โ€” only the submission record itself is removed.

Required scope: form_submissions:write

Path parameters

NameTypeRequiredDescription
idstringyesSubmission ID.

Response 204 โ€” empty.

WARNING

Deletion is irreversible and may be subject to your tenant's data-retention policy.

See also โ€‹

S-Launch