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 \
 -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":["49a77d5e-0169-4821-a690-97bb1bc5b151"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "49a77d5e-0169-4821-a690-97bb1bc5b151"
  ]
}