Remove clients from a case

DELETE /api/v1/cases/{case_uuid}/participants
application/json

Body

  • participants array[string]

    Account uuids belonging to the firm. At least one client must remain in the case.

DELETE /api/v1/cases/{case_uuid}/participants
curl \
 --request DELETE https://api.plannrcrm.com/api/v1/cases/case_uuid/participants \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"participants":["4dc2f051-1171-4f09-b44c-1a9151c61005"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "participants": [
    "4dc2f051-1171-4f09-b44c-1a9151c61005"
  ]
}