Get all received form submission requests
Headers
-
Content-Type string
-
Accept string
Query parameters
-
filter[uuid] string
Filter by a comma separated list of UUIDs.
-
filter[created_after] string
Date to filter when the record was created after. Example 2022-04-05
-
filter[created_before] string
Date to filter when the record was created before. Example 2022-05-31
-
filter[form.title] string
filter title of the form
-
sort string
Field to sort by. Valid fields are [created_at, updated_at, description]. Negative sign to denote DESC. Defaults to '-created_at'.
-
per_page integer
Number of results to return with pagination (Default 15. Max 500).
GET /api/v1/submission-request/received/{account}
curl \
-X GET https://api.plannrcrm.com/api/v1/submission-request/received/account \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"form": {
"live": true,
"uuid": "2eb97691-2118-4786-834a-e0d3001fb2b8",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2024-11-20T13:24:01+00:00",
"updated_at": "2024-11-20T13:24:01+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": "b76484ad-17bc-40fe-8f14-c82dd02a5657",
"created_at": "2024-11-20T13:24:01+00:00",
"submission": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "e4565dcd-36d7-46f6-96e2-e0a84f77b089",
"stage": "draft",
"account": "App\\Http\\Resources\\AccountResource",
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": "App\\Http\\Resources\\FormSubmissionRequestResource",
"created_at": "2024-11-20T13:24:01+00:00",
"updated_at": "2024-11-20T13:24:01+00:00"
},
"updated_at": "2024-11-20T13:24:01+00:00",
"description": "Please submit your annual survey form",
"has_submission": true
}
]
}