Remove clients from a case Run in API Explorer
Ask AI
DELETE
/api/v1/cases/{case_uuid}/participants
curl \
--request DELETE 'https://api.plannrcrm.com/api/v1/cases/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"participants":["7b17fd60-e103-429b-856b-d4241a0ee16a","3f251719-33ea-46f7-ae37-62d6a6730604","c62cda65-8b7c-4243-b565-6d0f2e0faad7"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"7b17fd60-e103-429b-856b-d4241a0ee16a",
"3f251719-33ea-46f7-ae37-62d6a6730604",
"c62cda65-8b7c-4243-b565-6d0f2e0faad7"
]
}