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":["db505aad-10d6-44f4-b84e-10d36755b5ca","ed0be76d-e517-4a25-8f72-5643130497ba"]}'
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": [
    "db505aad-10d6-44f4-b84e-10d36755b5ca",
    "ed0be76d-e517-4a25-8f72-5643130497ba"
  ]
}