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":["7e263962-1a04-46f1-b1bf-f52868c4b307"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "participants": [
    "7e263962-1a04-46f1-b1bf-f52868c4b307"
  ]
}