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":["798d0dad-554c-4ebb-8717-5925b4d63e68","892429cf-f8c4-4ac9-a255-a7114f9c1521","85818aab-f995-4b8d-aa65-3758d0c33cd4"]}'
Request examples
{
"participants": [
"798d0dad-554c-4ebb-8717-5925b4d63e68",
"892429cf-f8c4-4ac9-a255-a7114f9c1521",
"85818aab-f995-4b8d-aa65-3758d0c33cd4"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}