Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • group_uuid string Required
application/json

Body

  • participants array[string(uuid)] Required

    UUIDs of accounts to remove from the group.

DELETE /api/v1/group/{group_uuid}/participants
curl \
 --request DELETE 'https://api.plannrcrm.com/api/v1/group/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":["3dde9fff-e1f9-4406-83db-11b9a8aec00a","10538f30-1dba-41ed-bea8-d1702fc0b397","06830e4c-649b-4b8b-9096-b8a92739a33d"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "participants": [
    "3dde9fff-e1f9-4406-83db-11b9a8aec00a",
    "10538f30-1dba-41ed-bea8-d1702fc0b397",
    "06830e4c-649b-4b8b-9096-b8a92739a33d"
  ]
}