Get all form submissions for accounts in a circle
Query parameters
-
Comma separated list of relationships to include in the response. Valid relationships are [account]
-
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.
-
Filter submissions by their stage. Valid options are draft,submitted,approved,changes_requested.
-
Name of the account of who the submission was against.
-
Filter by a comma separated list of accounts UUIDs of who the form was submitted against.
-
Filter by a comma separated list of account UUIDs of who submitted the form.
-
Filter by a comma separated list of UUIDs of the form the submission was against.
-
Field to sort by. Valid fields are [created_at, updated_at, stage]. 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/circles/6ff8f7f6-1eb3-3525-be4a-3932c805afed/form-submissions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
{
"data": [
{
"form": {
"live": true,
"uuid": "7aa08fbb-0829-4c79-bf90-98bb611d0253",
"title": "Annual Catchup 2022",
"sections": "App\\Http\\Resources\\FormQuestionResource",
"created_at": "2025-06-26T11:37:02+01:00",
"updated_at": "2025-06-26T11:37:02+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": "4f3b2306-56b7-4d06-aa85-8e1992a165d2",
"stage": "draft",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "42e2d0d0-6430-47f9-b580-5d92be99f56d",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-06-26T11:37:02+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-26T11:37:02+01:00",
"with_login": true,
"inactive_at": "2025-06-26",
"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-26T11:37:02+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-06-26T11:37:02+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-26T11:37:02+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-06-26T11:37:02+01:00"
},
"answers": [
{
"last_name": "olive",
"first_name": "john"
}
],
"request": {
"form": "App\\Http\\Resources\\FormResource",
"uuid": "5f9a3ffc-6663-4e5b-9c10-8cc8ea81bdb1",
"created_at": "2025-06-26T11:37:02+01:00",
"submission": "App\\Http\\Resources\\FormSubmissionResource",
"updated_at": "2025-06-26T11:37:02+01:00",
"description": "Please submit your annual survey form",
"has_submission": true
},
"created_at": "2025-06-26T11:37:02+01:00",
"updated_at": "2025-06-26T11:37:02+01:00"
}
]
}