Bulk Update TaskItems
Updates multiple tasks at once. Supports updating status, assigned user, category
and the automation switch.
At least one of Status, AssignedUserCode, CategoryCode or IsAutomationDisabled must be provided.
Automation: IsAutomationDisabled = true switches automation off; false switches it on,
which immediately runs any workflow steps that are ready. Every code must belong to an
existing task - task previews are rejected rather than created.
Auto-assign behavior: When setting status to InProgress without specifying an AssignedUserCode,
any unassigned NotStarted tasks will be automatically assigned to the current user.
Parameters
| Name | Type | Description |
|---|---|---|
| tenant* | path string | The Tenant.Code |
The Tenant.Code |
||
Request Body*
{
"codes": [
"string"
],
"status": "NotStarted",
"assignedUserCode": "string",
"categoryCode": "string",
"isAutomationDisabled": false
}
Responses
200 OK
400 Bad Request
401 Unauthorized – Invalid or missing API key