Remove a participant from a workflow task
Headers
-
Content-Type string
-
Accept string
Body
-
participants array[string]
Account uuids belonging to the workflow board task.
DELETE /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
-X DELETE https://api.plannrcrm.com/api/v1/workflow/workflow_uuid/task/workflowTask_uuid/participants \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"participants":["2754cacd-1377-4f2a-aff8-1add720235d5"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"participants": [
"2754cacd-1377-4f2a-aff8-1add720235d5"
]
}