BulkUpdateWorkflowStepsRequest
Request to bulk-update workflow steps across multiple tasks.
At least one of Status or AssignedUserCode must be provided.
Properties
| Name | Type | Description |
|---|---|---|
| steps* | array of WorkflowStepReference | The workflow steps to update, identified by task code + group + step number. |
The workflow steps to update, identified by task code + group + step number. | ||
| status | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| assignedUserCode | string | Null = no change, empty string = unassign, value = assign to that user. |
Null = no change, empty string = unassign, value = assign to that user. | ||
JSON Example
{
"steps": [
{
"taskCode": "...",
"groupNumber": "...",
"stepNumber": "..."
}
],
"status": "NotStarted",
"assignedUserCode": "string"
}