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":["aa9fa06b-578d-4c42-aca4-e85db0e465ca"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "aa9fa06b-578d-4c42-aca4-e85db0e465ca"
  ]
}