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 \
 -X POST https://api.plannrcrm.com/api/v1/workflow/workflow_uuid/task/workflowTask_uuid/participants \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"participants":["2bfeee1c-8b63-4361-ae53-eade022d68a1"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "2bfeee1c-8b63-4361-ae53-eade022d68a1"
  ]
}