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":["e5292e4e-4454-41ff-ae4a-a991ea455f6a"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "e5292e4e-4454-41ff-ae4a-a991ea455f6a"
  ]
}