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":["74a7b7a6-45f6-4b32-a0ff-34fa533ae1c3","e908bb1e-58d1-40f6-9f3e-62b739b442cb","e4452548-e69f-473f-b4b1-1be6503c2acc"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"74a7b7a6-45f6-4b32-a0ff-34fa533ae1c3",
"e908bb1e-58d1-40f6-9f3e-62b739b442cb",
"e4452548-e69f-473f-b4b1-1be6503c2acc"
]
}