Remove a participant from a workflow task

DELETE /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
application/json

Body

  • participants array[string]

    Account uuids belonging to the workflow board task.

DELETE /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
 --request DELETE 'https://api.plannrcrm.com/api/v1/workflow/workflow_uuid/task/workflowTask_uuid/participants' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"participants":["6ec7d5c9-ed2a-409c-8092-7c30ae252184"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "6ec7d5c9-ed2a-409c-8092-7c30ae252184"
  ]
}