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":["ac384a7b-6c5c-479a-bf09-6389d21b3713"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "ac384a7b-6c5c-479a-bf09-6389d21b3713"
  ]
}