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":["7dbe17ae-3fe4-47fb-bec9-53310a80d3a6","62e83d0e-3acb-4a30-a6ca-fb1ca8e1677f"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"7dbe17ae-3fe4-47fb-bec9-53310a80d3a6",
"62e83d0e-3acb-4a30-a6ca-fb1ca8e1677f"
]
}