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":["b3f095a4-7f25-4872-9d3d-7bdb9c7467b5","33aa9947-0873-4471-94bb-304ca6cb73c0","d2335ca1-9050-4a64-8507-463ebe3daba7"],"assigned_to_uuids":["8d756177-cf0e-4366-8290-285b611fa156","e3337240-424a-4dc0-8103-3e20283ae713","45d15243-8065-4495-b780-968d4ad071ed"],"group_uuids":["c24cae29-efcd-4254-bb49-2890195bf4ad","b14959b2-1319-4990-87ac-8911f68aa93f","f2420bcf-9b02-45e0-a7e8-84e00c5da520"],"status":"c664a133-3e88-4813-81be-a007dd13f182","review_at":"2026-04-13T17:23:50+01:00","type":"704353d8-cf62-487a-b491-005f099eb38a","value":15099,"plans":["f0287e05-df89-457e-a8e8-70c09ea3645f","67be16de-de2f-4624-b819-43943c295dcf","2b7a1c33-ac24-44a7-903a-bf539f9325ff"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Patrick's Case",
"participants": [
"b3f095a4-7f25-4872-9d3d-7bdb9c7467b5",
"33aa9947-0873-4471-94bb-304ca6cb73c0",
"d2335ca1-9050-4a64-8507-463ebe3daba7"
],
"assigned_to_uuids": [
"8d756177-cf0e-4366-8290-285b611fa156",
"e3337240-424a-4dc0-8103-3e20283ae713",
"45d15243-8065-4495-b780-968d4ad071ed"
],
"group_uuids": [
"c24cae29-efcd-4254-bb49-2890195bf4ad",
"b14959b2-1319-4990-87ac-8911f68aa93f",
"f2420bcf-9b02-45e0-a7e8-84e00c5da520"
],
"status": "c664a133-3e88-4813-81be-a007dd13f182",
"review_at": "2026-04-13T17:23:50+01:00",
"type": "704353d8-cf62-487a-b491-005f099eb38a",
"value": 15099,
"plans": [
"f0287e05-df89-457e-a8e8-70c09ea3645f",
"67be16de-de2f-4624-b819-43943c295dcf",
"2b7a1c33-ac24-44a7-903a-bf539f9325ff"
]
}
Response examples (200)
{
"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"
}
}