list_executions
List manual test executions for a project to locate execution IDs before adding sources. Returns status, priority, environment, and progress details, with optional search and status filters.
Instructions
List Manual Test Executions for a project. Each row returns id, name, status, priority, environment, assignedTo, startDate, endDate, createdAt and progress. There is NO updatedAt on an execution, here or in get_execution, and startDate and endDate are planning dates a person types and are usually null - so createdAt cannot tell you when an execution was last worked on. For that, read get_execution_cases and take the newest executedAt across its rows. assignedTo is a bare user UUID that nothing on this surface resolves to a person. Use this to find an existing execution id before adding sources. progress carries every case bucket (passed/failed/blocked/inTesting/notExecuted, which sum to total) plus passRate and completionRate, both whole percentages from 0 to 100. passRate here is passed divided by TOTAL, so every case that has not been run yet counts against it and a young execution reads low through no fault of its results. That is a different denominator from get_case_execution_history, whose passRate divides by the rows actually executed, so do not compare the two numbers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| search | No | Optional name search | |
| status | No | Optional status filter, matched EXACTLY and case-sensitively against the execution_status vocabulary of the project; call get_project for the values it uses, since a project can rename them or add its own. An unrecognised value is rejected rather than answering with an empty list, which used to be indistinguishable from a genuine nothing-found. Note this matches the label a person set on the EXECUTION, not what is inside it: an execution holding blocked cases usually does not itself read blocked, so to find blocked WORK list without a filter and read progress.blocked. | |
| projectId | Yes | Project UUID |