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

Path parameters

  • workflow_uuid string Required
  • workflowTask_uuid string Required
application/json

Body

  • participants array[string(uuid)]

    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/6ff8f7f6-1eb3-3525-be4a-3932c805afed/task/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"participants":["d9144e1e-c249-4bad-b89e-ae4b4c2fda27","0cfe2b94-b38f-4246-a5ce-f4cf68dd3b8d","70f29195-1f41-4d88-b3bf-3a8caaf3ad41"]}'
Request examples
{
  "participants": [
    "d9144e1e-c249-4bad-b89e-ae4b4c2fda27",
    "0cfe2b94-b38f-4246-a5ce-f4cf68dd3b8d",
    "70f29195-1f41-4d88-b3bf-3a8caaf3ad41"
  ]
}