Bulk create test cases
qase_case_bulk_createCreate up to 100 test cases in Qase in one request, with batch validation and per-item reporting. Use when adding multiple cases to reduce API calls.
Instructions
Create up to 100 test cases in one request — the batch form of qase_case_upsert, and the right tool whenever more than one case is being written. Takes a list of cases with the same fields and the same enum handling as qase_case_upsert: labels ("high", "blocker") or numeric IDs both work, steps classic or Gherkin. The batch is validated as a whole, so an invalid item means nothing is created, and each item is then reported individually. Returns the IDs in the order submitted. This creates only; to change an existing case use qase_case_upsert with its id. Cost: one API call regardless of batch size. Ten cases measured 1.2s here against 5.6s as ten separate qase_case_upsert calls — four times faster and one tenth of the calls. Split larger imports across several calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Project code (2-10 uppercase letters, numbers, or underscores) | |
| cases | Yes | Test cases to create, 1 to 100 per call |