bulk_update_cases
Update up to 100 test cases in one call, applying new status, priority, and tags to a single project's cases.
Instructions
Update many test cases in one call - status, priority and tags - up to 100 at a time, all belonging to the same project. Returns updated, skipped, notFound and an errors array. Two different failure modes, and only one of them is all-or-nothing. Unknown or archived ids do NOT stop the batch: they land in notFound and in errors while every other case is still written, so read updated rather than treating the call as a whole. An unrecognised status or priority value, or ids spanning two projects, is rejected outright with nothing written. Each field is replace-all across the batch and there is no undo, so snapshot the current values with list_test_cases first if you may need to put them back.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| caseIds | Yes | Array of numeric case IDs to update (e.g., [1, 2, 3]) | |
| updates | Yes | Updates to apply. At least one field must be provided. |