get_test_run_results
Retrieve paginated execution results for a Zephyr Scale test run. Optionally return only the last execution per item.
Instructions
Page through the execution results of a Zephyr Scale test run (test cycle) via the paginated endpoint GET /testrun/{key}/testresults/page (the flat non-paginated variant is deprecated and not used). An item of a run can have several executions; set onlyLastExecutions to true to get only the most recent execution per item. Returns { startAt, maxResults, total, count, isLast, values } where total is the overall number of results on the server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| startAt | No | 0-based index of the first result to return (default 0) | |
| maxResults | No | Maximum number of results to return (default 50; the API server-side default is 200) | |
| testRunKey | Yes | Test run key, e.g. PROJ-R123 | |
| onlyLastExecutions | No | When true, return only the last execution of each test run item (API default false — all executions) |