Headers
-
Content-Type
string -
Accept
string
Path parameters
-
id
string Required The ID of the submission request.
GET
/api/v1/submission-request/{id}
curl \
--request GET 'https://api.plannrcrm.com/api/v1/submission-request/id' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"form": {
"live": true,
"uuid": "f0a1ef93-6a98-45b8-b23f-43893a55af19",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-04-22T13:44:18+01:00",
"updated_at": "2025-04-22T13:44:18+01: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": "1ff6cd10-b160-435e-8178-3bef2061c4fc",
"created_at": "2025-04-22T13:44:18+01:00",
"submission": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "1dac3be0-28b6-4a04-b78a-dacb6bdc99b0",
"stage": "draft",
"account": "App\\Http\\Resources\\AccountResource",
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": "App\\Http\\Resources\\FormSubmissionRequestResource",
"created_at": "2025-04-22T13:44:18+01:00",
"updated_at": "2025-04-22T13:44:18+01:00"
},
"updated_at": "2025-04-22T13:44:18+01:00",
"description": "Please submit your annual survey form",
"has_submission": true
}