Body
-
Name of the case
-
The uuid of the status chosen for the case
-
The case status's new position on the status list. Starting from 1. Only used if you are formatting cases in a kanban layout.
-
Array of account UUIDs
-
UUIDs of groups that will be assigned when the case is created.
-
Timestamp of when the case will be reviewed
-
The uuid of the type chosen for the case
-
Expect value the case will generate in pennies
-
Timestamp of when the case was completed
-
The uuids of the plans that will be associated to the case when it is created. Leave NULL to disassociate all plans from the case.
PUT
/api/v1/cases/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/cases/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Annual review","status":"c75fb92d-cf25-4e84-b489-3ab59a79a216","status_position":4,"assigned_to_uuids":["14b90872-809e-4df5-9c6c-5b84bda0efd2","3f688268-beba-4fcf-a543-8a054323a91d","5eac0d30-5368-4556-9682-ae47b2ead334"],"group_uuids":["91ba8db5-ed6b-41ad-b4da-b8e625e5fbeb","dec7521f-4c1b-48fb-9035-db5b6e272f86","b25572be-107c-4cab-9047-fedf31051e7c"],"review_at":"2026-03-18T16:05:25+00:00","type":"e29ff79b-fdc4-4414-9731-e46d2eb06846","value":15099,"completed_at":"2026-03-18T16:05:25+00:00","plans":["52866ecf-b41a-436d-b939-f0dff684f1bd","508b9dc4-e7f7-4c60-ba99-9c620fb5b5f8","9f229a0f-9b57-4f32-a0e9-8db039752547"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Annual review",
"status": "c75fb92d-cf25-4e84-b489-3ab59a79a216",
"status_position": 4,
"assigned_to_uuids": [
"14b90872-809e-4df5-9c6c-5b84bda0efd2",
"3f688268-beba-4fcf-a543-8a054323a91d",
"5eac0d30-5368-4556-9682-ae47b2ead334"
],
"group_uuids": [
"91ba8db5-ed6b-41ad-b4da-b8e625e5fbeb",
"dec7521f-4c1b-48fb-9035-db5b6e272f86",
"b25572be-107c-4cab-9047-fedf31051e7c"
],
"review_at": "2026-03-18T16:05:25+00:00",
"type": "e29ff79b-fdc4-4414-9731-e46d2eb06846",
"value": 15099,
"completed_at": "2026-03-18T16:05:25+00:00",
"plans": [
"52866ecf-b41a-436d-b939-f0dff684f1bd",
"508b9dc4-e7f7-4c60-ba99-9c620fb5b5f8",
"9f229a0f-9b57-4f32-a0e9-8db039752547"
]
}
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"
}
}