Add a participant to the workflow task Run in API Explorer
Ask AI
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":["bd98042b-6f1d-4dfa-99d0-fe4a8e45814b","8a5b25a1-5d30-4201-90be-222db128a986","74f56873-07c3-4097-90f7-3389d838659a"]}'
Request examples
{
"participants": [
"bd98042b-6f1d-4dfa-99d0-fe4a8e45814b",
"8a5b25a1-5d30-4201-90be-222db128a986",
"74f56873-07c3-4097-90f7-3389d838659a"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}