Add a participant to the workflow task

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

Headers

Path parameters

application/json

Body

  • participants array[string]

    Account uuids belonging to the workflow board task.

POST /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
 --request POST 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":["47f2057c-2093-40b6-894c-6b0c64e5ba09"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "47f2057c-2093-40b6-894c-6b0c64e5ba09"
  ]
}