Get all received form submission requests Run in API Explorer
Get all form submission requests that were received by the authenticated account, or by the account given in the URL.
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/received/{"value" => "", "summary" => "When the value is omitted"}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"data": [
{
"form": {
"live": true,
"uuid": "e1733d1c-3a27-4a36-a654-5fff90e465f7",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-11-17T21:14:39+00:00",
"updated_at": "2025-11-17T21:14:39+00: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": "14630c2b-3229-4e27-a86b-117573867794",
"created_at": "2025-11-17T21:14:39+00:00",
"submission": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "beed518e-443a-4ca0-b54d-be9c75743181",
"stage": "draft",
"account": "App\\Http\\Resources\\AccountResource",
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": "App\\Http\\Resources\\FormSubmissionRequestResource",
"created_at": "2025-11-17T21:14:39+00:00",
"updated_at": "2025-11-17T21:14:39+00:00"
},
"updated_at": "2025-11-17T21:14:39+00:00",
"description": "Please submit your annual survey form",
"has_submission": true
}
]
}