Get HyperExecute Job Scenarios
tm.get_hyperExecuteJobScenariosRetrieve per-scenario execution details for a HyperExecute job, including retry attempts, status, and duration, with optional filtering and pagination.
Instructions
Lists scenario-level execution details for a HyperExecute Job: one entry per test execution attempt (across every Task in the job), each with its scenario ID, parent Task ID, name, iteration (retry number, 0 = first attempt), status, group number, and duration. Input: job_id (required, same ID used by tm.get_hyperExecuteJobById). Optional: limit (max 20, default 10), cursor (from a previous response's metadata, to fetch the next page - returns scenarios with an ID >= the cursor value), status (filter by execution status), search_text (filter by occurrence in the scenario name). IMPORTANT: a status/search_text filter that matches zero scenarios returns a 'not found' error here rather than an empty list - this tool distinguishes that case (reported as 'no scenarios match this filter') from a genuinely invalid/nonexistent job_id (reported as 'job not found') using the API's own error text, so the two are not confused. Read-only; does not modify anything.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| cursor | No | ||
| job_id | Yes | ||
| status | No | ||
| search_text | No |