Forms
List Forms
Retrieve a paginated list of forms with optional filtering and sorting options.
get/public/v1/forms
Query parameters
countinteger
Specify how many forms to return. Default is 50 forms, maximum is 100 forms.
pageinteger
Specify which page of the dataset to return.
statusstring[]
Specify which status of the forms dataset to return.
order_by'name' | 'responses' | 'status' | 'created_date' | 'modified_date'
Specify the form dataset order to return.
ascboolean
Specify sorting the result-set in ascending or descending order.
namestring
Specify the form name.
Response
Example response
{
"results": [
{
"id": "d94c1b16-ea92-45e6-bc7e-f6d260bd4d42",
"name": "Blank form",
"date_created": "2021-10-15T10:41:00.162597Z",
"date_modified": "2021-10-15T10:41:15.305831Z",
"status": "DRAFT"
}
]
}