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
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":["bfeb12f2-638b-42c5-9707-74c4fdaafdd9","46f82540-4269-4c23-9dc3-2ec842999ebf","1756dcd7-6907-4e2f-97cc-120c0f502865"],"assigned_to_uuids":["31ac11b8-d80c-4be4-82cc-2b05690e2af4","75a5a7c5-6b3c-4e54-9761-11054d18c9ab","4ecdbb7a-054a-4a59-8c78-afb02a984328"],"group_uuids":["b39ce980-fffa-4f39-91fe-b00b01b0f022","5f792e88-7db5-4c17-872d-364eeb3eb153","cff3856f-033d-44be-add4-7875bb4bf7a3"],"status":"120bb5f7-3deb-4e30-8e93-e95973791aaf","review_at":"2026-04-09T17:35:05+01:00","type":"29ec929f-8570-45d2-a1c3-3c75e40d2a7e","value":15099,"plans":["93ceae3c-eb28-4c44-9f31-6be03954b28f","90ae7e77-3f70-439e-8608-c7aa18ed8098","0c5b6f4c-c919-4780-a86f-a527bb6ce6b4"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Patrick's Case",
"participants": [
"bfeb12f2-638b-42c5-9707-74c4fdaafdd9",
"46f82540-4269-4c23-9dc3-2ec842999ebf",
"1756dcd7-6907-4e2f-97cc-120c0f502865"
],
"assigned_to_uuids": [
"31ac11b8-d80c-4be4-82cc-2b05690e2af4",
"75a5a7c5-6b3c-4e54-9761-11054d18c9ab",
"4ecdbb7a-054a-4a59-8c78-afb02a984328"
],
"group_uuids": [
"b39ce980-fffa-4f39-91fe-b00b01b0f022",
"5f792e88-7db5-4c17-872d-364eeb3eb153",
"cff3856f-033d-44be-add4-7875bb4bf7a3"
],
"status": "120bb5f7-3deb-4e30-8e93-e95973791aaf",
"review_at": "2026-04-09T17:35:05+01:00",
"type": "29ec929f-8570-45d2-a1c3-3c75e40d2a7e",
"value": 15099,
"plans": [
"93ceae3c-eb28-4c44-9f31-6be03954b28f",
"90ae7e77-3f70-439e-8608-c7aa18ed8098",
"0c5b6f4c-c919-4780-a86f-a527bb6ce6b4"
]
}
Response examples (200)
{
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
}