Remove participants from a group

DELETE /api/v1/group/{group_uuid}/participants
application/json

Body Required

  • participants array[string] Required

    UUIDs of accounts to remove from the group.

DELETE /api/v1/group/{group_uuid}/participants
curl \
 -X DELETE https://api.plannrcrm.com/api/v1/group/group_uuid/participants \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 -d '{"participants":["88194be2-e901-40d5-ab32-5b817f91ed1e","cbf80a04-575d-48c6-b4c2-e77fa864665c"]}'
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": [
    "88194be2-e901-40d5-ab32-5b817f91ed1e",
    "cbf80a04-575d-48c6-b4c2-e77fa864665c"
  ]
}