Create a submission to a form
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
form_uuid
integer Required
Body
-
account_uuid
string UUID of the account to attach the form submission to, if left blank will use the authenticated account
POST
/api/v1/form/{form_uuid}/submission
curl \
--request POST 'https://api.plannrcrm.com/api/v1/form/form_uuid/submission' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"account_uuid":"b23372e6-c442-4dae-9b1e-7056564bbb53"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"account_uuid": "b23372e6-c442-4dae-9b1e-7056564bbb53"
}
Response examples (200)
{
"form": {
"live": true,
"uuid": "2b5f51e3-ca04-4d41-af5e-f1b829ae69d2",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-06-05T11:39:39+01:00",
"updated_at": "2025-06-05T11:39:39+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": "7226da0b-73aa-4ec5-b2de-3747b6b6ea85",
"stage": "draft",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "937db359-cd8c-4ead-a54a-59e863dcb68e",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-06-05T11:39:39+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-05T11:39:39+01:00",
"with_login": true,
"inactive_at": "2025-06-05",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-06-05T11:39:39+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-06-05T11:39:39+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-06-05T11:39:39+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-06-05T11:39:39+01:00"
},
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "da16fafc-e630-4d25-92b3-7e2c606eacfb",
"created_at": "2025-06-05T11:39:39+01:00",
"submission": "App\\Http\\Resources\\FormSubmissionResource",
"updated_at": "2025-06-05T11:39:39+01:00",
"description": "Please submit your annual survey form",
"has_submission": true
},
"created_at": "2025-06-05T11:39:39+01:00",
"updated_at": "2025-06-05T11:39:39+01:00"
}