List Submissions
Retrieve submissions for a specific form.Authentication & Scope
Requiresforms-read
ability.
Request
Path Parameters
Parameter | Type | Description |
---|---|---|
id | number | Numeric ID of the form. |
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
page | number | No | Pagination page number (default 1 ). |
per_page | number | No | Number of results per page (default 100 , max 100 ). |
search | string | No | Search term to filter submissions by field values. |
status | string | No | Filter by submission status: completed , partial , or all (default). |
Response
200 OK
– Returns a paginated collection of Submission
objects.
Response Fields
Each submission object contains:Field | Type | Description |
---|---|---|
data | object | Contains form field responses plus metadata |
completion_time | number/null | Time taken to complete the form in seconds |
form_id | number | ID of the parent form |
id | number | Unique submission ID |
Data Object Structure
Thedata
object contains:
- Form field responses: Keyed by field UUID, values vary by field type
- Metadata fields:
status
: Submission status (completed
orpartial
)created_at
: Submission creation timestampid
: Submission ID (duplicate for convenience)
File Field Handling
File and signature fields are automatically processed to include download URLs:File URLs are signed and expire after 10 minutes for security.
Query Parameter Details
Search Functionality
- Searches within submission field values only (not field names/keys)
- Uses case-insensitive matching
- Supports partial text matching
Status Filtering
completed
: Returns only fully completed submissionspartial
: Returns only partially completed submissions (Pro feature)all
or omitted: Returns all submissions regardless of status
Pagination
- Default
per_page
is 100, maximum is 100 - Results are ordered by
created_at
in descending order (newest first)
403 Forbidden
– The token lacks forms-read
.Authorizations
Personal Access Token
Path Parameters
Query Parameters
Pagination page number
Required range:
x >= 1
Number of results per page
Required range:
1 <= x <= 100
Search term to filter submissions by field values
Filter by submission status
Available options:
completed
, partial
, all