add_tests_to_cycle_from_cycle
Adds tests from another cycle as new UNEXECUTED executions in the target cycle. Optionally filter by components, labels, priorities, statuses, or defects.
Instructions
Add tests from another cycle as new UNEXECUTED executions in this cycle.
Tests are sourced from from_cycle_id / from_version_id and can be narrowed
by components, labels, priorities, statuses (comma-separated filter
strings) and has_defects (bool). project/version accept keys/names or ids
(prefer ids to skip a lookup; -1 = Unscheduled). Async: with wait=True
(default) polls to completion and returns the final job payload; with wait=False
returns {jobProgressToken}.
Important: new executions always start with status UNEXECUTED regardless of
the source cycle's results. If you need to carry over the original execution
statuses and defect links, use copy_executions_to_cycle instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cycle_id | Yes | ||
| project | Yes | ||
| version | Yes | ||
| from_cycle_id | Yes | ||
| from_version_id | Yes | ||
| components | No | ||
| labels | No | ||
| priorities | No | ||
| statuses | No | ||
| has_defects | No | ||
| assignee_type | No | ||
| folder_id | No | ||
| wait | No | ||
| timeout | No |