Get all submission requests on a form
This endpoint can only be hit by senior employees It will show every form submission request created for this form Including whom sent the request and the recipient
Query parameters
-
Filter by a comma separated list of UUIDs.
-
Date to filter when the record was created after.
-
Date to filter when the record was created before.
-
@deprecated Please use filter[form_title] instead.
-
Filter by partial form titles.
-
Filter by a comma separated list of employee account UUIDs of who sent the form requests.
-
Filter by a comma separated list of client account UUIDs of who received the form requests.
-
Filter by a comma separated list of circle UUIDs belonging to client accounts of who received the form requests.
-
Field to sort by. Valid fields are [created_at, updated_at, description]. Negative sign to denote DESC. Defaults to '-created_at'.
-
Number of results to return with pagination (Default 15. Max 500).
curl \
--request GET 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/submission-request' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
{
"data": [
{
"form": {
"live": true,
"uuid": "96faaf2b-3b27-477c-b104-060b1dc7e84e",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-06-26T11:37:05+01:00",
"updated_at": "2025-06-26T11:37:05+01:00",
"visibility": "public",
"client_type": "client",
"description": "This is the annual catchup form for 2022",
"allowed_hosts": [
"domain.com",
"subdomain.domain.com"
],
"create_client": true,
"draft_submissions_count": 5,
"submitted_submissions_count": 5
},
"uuid": "157266ae-81b2-461e-98de-096dd6e24170",
"created_at": "2025-06-26T11:37:05+01:00",
"submission": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "4fd10afe-947f-4fc0-b7e9-4b6a17b58f9c",
"stage": "draft",
"account": "App\\Http\\Resources\\AccountResource",
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": "App\\Http\\Resources\\FormSubmissionRequestResource",
"created_at": "2025-06-26T11:37:05+01:00",
"updated_at": "2025-06-26T11:37:05+01:00"
},
"updated_at": "2025-06-26T11:37:05+01:00",
"description": "Please submit your annual survey form",
"has_submission": true
}
]
}