Remove participants from a conversation

DELETE /api/v1/conversation/{conversation_uuid}/participants
application/json

Body Required

  • participants array[string] Required

    Conversation participant account uuids to remove from conversation

DELETE /api/v1/conversation/{conversation_uuid}/participants
curl \
 --request DELETE https://api.plannrcrm.com/api/v1/conversation/conversation_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":["92d013e7-fe2d-4200-abf1-0c128594660a","b2880eb7-638c-4b21-b2be-17180fd4ee19"]}'
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": [
    "92d013e7-fe2d-4200-abf1-0c128594660a",
    "b2880eb7-638c-4b21-b2be-17180fd4ee19"
  ]
}