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": "0c280d8e-7386-4466-9d08-fc2a59e514d9",
"created_at": "2026-04-28T22:34:35+01:00",
"updated_at": "2026-04-28T22:34:35+01:00",
"description": "Please submit your annual survey form",
"form": {
"uuid": "bc25fc5a-7161-4244-ac55-81ddab9be407",
"created_at": "2026-04-28T22:34:35+01:00",
"updated_at": "2026-04-28T22:34:35+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": "8256c47a-7a8e-41d7-afe5-26af66365d90",
"created_at": "2026-04-28T22:34:35+01:00",
"updated_at": "2026-04-28T22:34:35+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"
}
]
}
}
]
}