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":["78f40599-5c7e-490d-8fe3-3b4fa5127c77","65c5fb81-8410-4514-a382-8b3b81bcc243"]}'
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": [
"78f40599-5c7e-490d-8fe3-3b4fa5127c77",
"65c5fb81-8410-4514-a382-8b3b81bcc243"
]
}