Body
-
The name of the case
-
Account uuids belonging to the firm. Must include at least one client.
-
Array of account UUIDs to assign to the case.
-
UUIDs of groups that will be assigned when the case is created.
-
The uuid of the status chosen for the case
-
The date the case should be reviewed
-
The uuid of the type chosen for the case
-
Expect value the case will generate in pennies
-
The uuids of the plans chosen for the case
-
Custom field values keyed by the custom field reference. Only references configured for cases (and matching the supplied case type/status, where conditional) are accepted.
Additional properties are allowed.
POST
/api/v1/cases
curl \
--request POST 'https://api.plannrcrm.com/api/v1/cases' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Patrick's Case","participants":["6c774fad-1aab-4e36-a8fe-dec7b4ad6a54","9866c7e9-72cd-49b5-9c29-ca4ebab8e22f","714f08bb-9fc0-40be-8ab8-a7633135706c"],"assigned_to_uuids":["75749c08-8f3b-491f-becd-dda55fc8ab40","63fbe636-315d-40e4-8616-8333f54d01c0","f58d2466-239f-426a-99f4-8239771a9942"],"group_uuids":["614641c1-e2f3-4fb8-ab60-6aa35fb15574","219d3f7e-5733-4b81-b940-d40574f1ae9d","af9eea64-b35a-42d5-8523-2533c76dafd5"],"status":"e6730452-0cd9-49a8-ac2c-49213ce4b3f7","review_at":"2026-05-19T18:31:17+01:00","type":"24ae6de5-e3a8-4465-9a7c-56875eaf997d","value":15099,"plans":["8c438f92-4bb6-4203-a3a1-4b04baebbd30","dadf1e52-536d-4783-866c-aab47acc3b3f","03b2fc9e-533a-464f-a917-3e25131d3690"],"custom_fields":{"ongoing_case":"Ongoing"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Patrick's Case",
"participants": [
"6c774fad-1aab-4e36-a8fe-dec7b4ad6a54",
"9866c7e9-72cd-49b5-9c29-ca4ebab8e22f",
"714f08bb-9fc0-40be-8ab8-a7633135706c"
],
"assigned_to_uuids": [
"75749c08-8f3b-491f-becd-dda55fc8ab40",
"63fbe636-315d-40e4-8616-8333f54d01c0",
"f58d2466-239f-426a-99f4-8239771a9942"
],
"group_uuids": [
"614641c1-e2f3-4fb8-ab60-6aa35fb15574",
"219d3f7e-5733-4b81-b940-d40574f1ae9d",
"af9eea64-b35a-42d5-8523-2533c76dafd5"
],
"status": "e6730452-0cd9-49a8-ac2c-49213ce4b3f7",
"review_at": "2026-05-19T18:31:17+01:00",
"type": "24ae6de5-e3a8-4465-9a7c-56875eaf997d",
"value": 15099,
"plans": [
"8c438f92-4bb6-4203-a3a1-4b04baebbd30",
"dadf1e52-536d-4783-866c-aab47acc3b3f",
"03b2fc9e-533a-464f-a917-3e25131d3690"
],
"custom_fields": {
"ongoing_case": "Ongoing"
}
}
Response examples (200)
{
"uuid": "04fb822d-fd7d-4110-8aab-720373d3b1c1",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"name": "finance",
"slug": "finance",
"status": {
"uuid": "38a7b90d-e38f-4ff8-b8c7-5ff94ec043a9",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"name": "To Be Reviewed",
"colour": "#23852B",
"position": 5,
"is_type_completed": false
},
"type": {
"uuid": "f1cfe276-afbb-445a-95bc-de846ed52070",
"name": "Mortgage Plan",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00"
},
"review_at": "2026-05-19T18:31:17+01:00",
"assigned_to_uuids": [
"54d5b503-01fb-4bc7-b916-b801c8e89ca0"
],
"group_uuids": [
"32447a53-5a86-451e-b79a-bda77c704e60"
],
"completed_at": "2026-05-19T18:31:17+01:00",
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"status_position": 4,
"participants_count": 4,
"participants": {
"uuid": "ca5cb1bb-e6e4-47c5-bf5e-1d8f0a4ef311",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"firm": "App\\Http\\Resources\\FirmResource",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"business_unit": "App\\Http\\Resources\\BusinessUnitResource",
"groups": "App\\Http\\Resources\\GroupResource",
"tags": "App\\Http\\Resources\\TagResource",
"owners": "App\\Http\\Resources\\AccountResource",
"first_contact_date": "2026-05-19T18:31:17+01:00",
"next_review_date": "2026-05-19T18:31:17+01:00",
"previous_review_date": "2026-05-19T18:31:17+01:00",
"anniversary_review_date": "2026-05-19T18:31:17+01:00",
"terms_of_business_at": "2026-05-19T18:31:17+01:00",
"client_agreement_at": "2026-05-19T18:31:17+01:00",
"with_login": true,
"has_joint_account": true,
"can_be_deleted": "false",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"circles": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"inactive_at": "2026-05-19",
"last_interaction_at": "2026-05-19 18:31:17",
"referral_code": "ABC12345",
"permissions": {
"firm:read": [
"firm"
],
"network:read": [
"network:uuid"
]
},
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"task_board_uuid": "bef57cce-bd3c-47f2-98fd-742c8fb4f3ab",
"plans": {
"uuid": "aabd69a2-28c1-4895-b2a3-6ba6ce9e4750",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"opened_at": "2026-05-19T18:31:17+01:00",
"name": "Johns ISA",
"type": "cash_account",
"sub_type": "lifetime isa",
"abstract_type": "asset",
"policy_number": "AVIVA-123",
"proposal_reference": "AB123456",
"status": "inactive",
"inactive_at": "2026-05-19T18:31:17+01:00",
"inactive_reason": "claimed",
"agency_in_your_name": true,
"agency_in_your_name_from": "2025-05-19",
"originally_sold_by_firm": true,
"under_advice": true,
"visible_on_client_portal": true,
"include_in_client_valuation": true,
"show_on_joint": true,
"shown_on_circles": true,
"review_date": "2025-05-19",
"on_panel": true,
"is_group_scheme": false,
"is_sub_group_scheme": false,
"is_group_scheme_member": false,
"advice_area": "non_investment_insurance",
"main_account": "App\\Http\\Resources\\Plans\\SubAccountResource",
"sub_accounts": "App\\Http\\Resources\\Plans\\SubAccountResource",
"provider": "App\\Http\\Resources\\Plans\\ProviderResource",
"covers": "App\\Http\\Resources\\Plans\\CoverResource",
"claims": "App\\Http\\Resources\\Plans\\ClaimResource",
"total_benefit_amount": {
"amount": {
"example": "25000000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£250,000.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"total_benefits": {
"critical_illness": {
"amount": {
"example": "15000000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£150,000.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"family_income_benefit": {
"amount": {
"example": "10000000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£100,000.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
}
},
"latest_valuations": "App\\Http\\Resources\\Plans\\ValuationResource",
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"valued_at": "2026-05-19T18:31:17+01:00",
"original_valued_at": "2026-05-18T18:31:17+01:00",
"client": "App\\Http\\Resources\\AccountResource",
"accounts": "App\\Http\\Resources\\AccountResource",
"seller": "App\\Http\\Resources\\AccountResource",
"linked_owners": "App\\Http\\Resources\\AccountResource",
"linked_plans": "App\\Http\\Resources\\Plans\\PlanResource",
"visible_to_circles": "App\\Http\\Resources\\CircleResource",
"statistics": {
"recent_growth": 100
},
"cases": "App\\Http\\Resources\\CasesResource",
"tags": "App\\Http\\Resources\\TagResource",
"is_wrap_product": false,
"is_wrap_child": false,
"wrap": "App\\Http\\Resources\\Plans\\PlanResource",
"wrap_children": "App\\Http\\Resources\\Plans\\PlanResource",
"linked_policy_numbers": "App\\Http\\Resources\\Plans\\LinkedPolicyNumberResource",
"can_be_deleted": "false",
"contract_enquiry_account": "App\\Http\\Resources\\AccountResource",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"custom_fields": [
{
"uuid": "263ea0ae-a900-4d18-935b-22425a0010fa",
"created_at": "2026-05-19T18:31:17+01:00",
"updated_at": "2026-05-19T18:31:17+01:00",
"type": "string",
"name": "Favourite Drink",
"reference": "favourite_drink",
"is_required": false,
"value": "Coffee",
"selection_options": [
"Coffee",
"Tea",
"Water"
],
"help_text": "This is the client's favourite drink."
}
]
}