API Docs / Schemas / BulkUpdateWorkflowStepsRequest

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.

statusenum

NotStarted InProgress Blocked Completed Skipped

NotStarted InProgress Blocked Completed Skipped

assignedUserCodestring

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"
}

Used By Operations