create_execution
Create a top-level manual test execution to aggregate collections, suites, and case groups, then populate it with related items for a consolidated run.
Instructions
Create a Manual Test Execution (the top-level container shown on the Executions page) that aggregates collections/suites/case-groups. NOT the same as a Test Collection: use create_test_collection for a single manual run; use this to assemble an execution. After creating, use add_collections_to_execution / add_suites_to_execution / add_cases_to_execution to populate it. Returns the new execution id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Execution name | |
| status | No | Optional. One of: not_executed, in_testing, passed, failed, blocked (plus any project-custom values). Defaults to 'not_executed'. | |
| endDate | No | Optional ISO date (>= startDate) | |
| priority | No | Optional. One of: low, medium, high, critical. Defaults to 'medium'. | |
| projectId | Yes | Project UUID | |
| startDate | No | Optional ISO date | |
| assignedTo | No | Optional assignee user id (must be a project member) | |
| releaseIds | No | Optional release UUIDs to link | |
| description | No | Optional description | |
| environment | No | Optional environment label (e.g. QA, Staging) |