Add clients to a case Run in API Explorer
Ask AI
POST
/api/v1/cases/{case_uuid}/participants
curl \
--request POST '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":["c89b7537-df30-4972-8f57-6989f626fb20","6673b503-be02-4a6e-83eb-a6803d7491ac","9a750e86-4fb3-4d2f-84c3-4769c903d08e"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"c89b7537-df30-4972-8f57-6989f626fb20",
"6673b503-be02-4a6e-83eb-a6803d7491ac",
"9a750e86-4fb3-4d2f-84c3-4769c903d08e"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}