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": "e43b314e-d16f-4979-bce2-f2c38e6ef519",
"created_at": "2026-06-27T09:33:41+01:00",
"updated_at": "2026-06-27T09:33:41+01:00",
"description": "Please submit your annual survey form",
"form": {
"uuid": "2a3666bb-8db7-448b-9cb2-ebbb34019187",
"created_at": "2026-06-27T09:33:41+01:00",
"updated_at": "2026-06-27T09:33:41+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": "886b12d7-d0f7-453f-bc8d-8e19c90c1fd6",
"created_at": "2026-06-27T09:33:41+01:00",
"updated_at": "2026-06-27T09:33:41+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"
}
]
}
}
]
}