Get all sent form submission requests Run in API Explorer
Get all form submission requests that were sent by the authenticated account.
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/submission-request/sent' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"data": [
{
"uuid": "b5608366-25a2-4651-b5d6-c0286bf1404e",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"description": "Please submit your annual survey form",
"form": {
"uuid": "253e4702-387a-4e1e-ac0c-9c8ea77aaba2",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"title": "Annual Catchup 2022",
"description": "This is the annual catchup form for 2022",
"live": true,
"visibility": "public",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"allowed_hosts": [
"domain.com",
"subdomain.domain.com"
],
"draft_submissions_count": 5,
"submitted_submissions_count": 5,
"create_client": true,
"client_type": "client"
},
"has_submission": true,
"submission": {
"uuid": "b90ee249-a431-4aaa-a4b1-5f09e96e8d2f",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"stage": "draft",
"account": "App\\Http\\Resources\\AccountResource",
"request": "App\\Http\\Resources\\FormSubmissionRequestResource",
"form": "App\\Http\\Resources\\FormResource",
"answers": [
{
"first_name": "john",
"last_name": "olive"
}
]
}
}
]
}