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":["25bc39d8-c519-433a-8ee8-6339cd274767","515fd5d7-a4a0-4809-8e45-6243eb2414e5","c4720a45-20cf-4c82-b945-302b2206c63b"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"25bc39d8-c519-433a-8ee8-6339cd274767",
"515fd5d7-a4a0-4809-8e45-6243eb2414e5",
"c4720a45-20cf-4c82-b945-302b2206c63b"
]
}