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":["8738c5ab-d17d-4fd3-897a-a594f628f9ad","3ad2a781-ba2d-4136-81e5-78ac5301d8b8","773f8ee6-e657-45f5-96e0-0b095a776db4"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"8738c5ab-d17d-4fd3-897a-a594f628f9ad",
"3ad2a781-ba2d-4136-81e5-78ac5301d8b8",
"773f8ee6-e657-45f5-96e0-0b095a776db4"
]
}