Remove participants from a group
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
UUIDs of accounts to remove from the group.
DELETE
/api/v1/group/{group_uuid}/participants
curl \
-X DELETE https://api.plannrcrm.com/api/v1/group/group_uuid/participants \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"participants":["3717b3e6-e5d3-4097-bbde-ff25985b882c","e146f05f-d559-4974-aa4c-15b23879f93e"]}'
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": [
"3717b3e6-e5d3-4097-bbde-ff25985b882c",
"e146f05f-d559-4974-aa4c-15b23879f93e"
]
}