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":["2b696738-083b-4189-b56f-c3fe27a1d896","38172641-77ba-4e2c-ade5-1c481d9d52fc"]}'
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": [
    "2b696738-083b-4189-b56f-c3fe27a1d896",
    "38172641-77ba-4e2c-ade5-1c481d9d52fc"
  ]
}