Add a participant to the workflow task
POST
/api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
--request POST 'https://api.plannrcrm.com/api/v1/workflow/6ff8f7f6-1eb3-3525-be4a-3932c805afed/task/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"participants":["63e2ac2f-52eb-4c57-9d69-bc3f1f59a04e"]}'
Request examples
{
"participants": [
"63e2ac2f-52eb-4c57-9d69-bc3f1f59a04e"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}