Bulk workflow operations
Assign or move multiple tasks with explicit targets and dry-run validation.
workflow.assign_tasks(
["TASK_A", "TASK_B"],
user_id="USER_ID",
)
preview = workflow.move_tasks(
["TASK_A", "TASK_B"],
destination_stage="REVIEW_STAGE_ID",
reason="Calibration batch",
dry_run=True,
)
workflow.move_tasks(
["TASK_A", "TASK_B"],
destination_stage="REVIEW_STAGE_ID",
reason="Calibration batch",
)Operating contract
Concern
Required behavior
Failure and recovery boundary
Condition
Response