POST /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.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
 --request POST '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":["95d0efe6-572c-45ec-b77e-ab8a30b75090","bf2c6977-c0bf-43d8-b3b0-9448be94ebca","378b586a-bce0-4c2e-9214-fb917b2773d6"]}'
Request examples
{
  "participants": [
    "95d0efe6-572c-45ec-b77e-ab8a30b75090",
    "bf2c6977-c0bf-43d8-b3b0-9448be94ebca",
    "378b586a-bce0-4c2e-9214-fb917b2773d6"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}