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":["9b60c525-d35c-448f-b3d8-3d44719d1f3b","adb2e610-af0d-479d-89bb-ac40d6693f58","b7b5db85-7d1c-4362-aa5b-a9a585cfa30d"]}'
Request examples
{
  "participants": [
    "9b60c525-d35c-448f-b3d8-3d44719d1f3b",
    "adb2e610-af0d-479d-89bb-ac40d6693f58",
    "b7b5db85-7d1c-4362-aa5b-a9a585cfa30d"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}