Remove participants from a group Run in API Explorer
Ask AI
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":["88423cab-63b8-447b-aa9b-bd4ae0983503","25e2e6cf-73ee-4f22-b203-e5a20c906fcd","0e0da5de-f015-4a36-9499-5e2753f331ec"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"88423cab-63b8-447b-aa9b-bd4ae0983503",
"25e2e6cf-73ee-4f22-b203-e5a20c906fcd",
"0e0da5de-f015-4a36-9499-5e2753f331ec"
]
}