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": "6e755e41-88a0-44ef-bee6-10a2e44bdf23",
"created_at": "2026-06-08T16:08:02+01:00",
"updated_at": "2026-06-08T16:08:02+01:00",
"description": "Please submit your annual survey form",
"form": {
"uuid": "defbbf38-18f5-4795-90b7-d1320477c7d3",
"created_at": "2026-06-08T16:08:02+01:00",
"updated_at": "2026-06-08T16:08:02+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": "e11a46d3-c974-4253-ae7c-6d6ff18d8d40",
"created_at": "2026-06-08T16:08:02+01:00",
"updated_at": "2026-06-08T16:08:02+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"
}
]
}
}
]
}