create_execution
Create a manual test execution container to aggregate test collections, suites, and named case groups for structured test runs.
Instructions
Create a Manual Test Execution, the top-level container on the Executions page, which aggregates Test Collections, suites and named case groups. NOT the same as a Test Collection: use create_test_collection for a single grouping of cases, and this to assemble an execution out of several. Returns the whole execution under an execution key: id, name, description, status, priority, environment, assignedTo, startDate, endDate, projectId and createdAt. The id you need for everything else is execution.id, not a top-level id. It starts empty, so follow with add_suites_to_execution, add_collections_to_execution or add_cases_to_execution to put something in it.
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) |