Remove participants from a conversation Run in API Explorer
Ask AI
DELETE
/api/v1/conversation/{conversation_uuid}/participants
curl \
--request DELETE 'https://api.plannrcrm.com/api/v1/conversation/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": [
"fb8f205f-7557-48e7-b8a2-f7f121bce7c0",
"2b36cf9b-a45e-4b28-aa46-38938ec3099d",
"fd11abd0-384b-4bf4-a966-890ea2f68859"
]
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"fb8f205f-7557-48e7-b8a2-f7f121bce7c0",
"2b36cf9b-a45e-4b28-aa46-38938ec3099d",
"fd11abd0-384b-4bf4-a966-890ea2f68859"
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}