Remove participants from a group
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
group_uuid
integer Required
Body
Required
-
participants
array[string] 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/group_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":["128ccaf6-8e5d-4068-8a65-dbb12933f4da","cbd7fbdf-d853-43e7-9f06-722f1e05d445"]}'
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": [
"128ccaf6-8e5d-4068-8a65-dbb12933f4da",
"cbd7fbdf-d853-43e7-9f06-722f1e05d445"
]
}