Get test executions
Lists test executions for a test run.
https://api.futureagi.com/simulate/run-tests/{run_test_id}/executions/ Authentication
Path parameters
UUID of the test run whose executions to retrieve.
Query parameters
Case-insensitive partial match on execution status or scenario name.
Filter by execution status. Accepted values: PENDING, RUNNING, COMPLETED, FAILED, CANCELLED.
Number of records per page. Defaults to 10. Must be a positive integer.
Page number to retrieve. Defaults to 1.
Response
200 OKTotal matching executions across all pages.
URL to the next page, or null if on the last page.
URL to the previous page, or null if on the first page.
Array of test execution objects for the current page.
UUID of the test execution.
UUID of the parent test run.
One of PENDING, RUNNING, COMPLETED, FAILED, or CANCELLED.
ISO 8601 timestamp when execution began, or null if not yet started.
ISO 8601 timestamp when execution finished, or null if still running.
Number of scenarios in this execution.
Total simulation calls scheduled across all scenarios.
Number of successfully completed calls.
Number of failed calls.
Elapsed time in seconds, or null if not yet completed.
Percentage of successful calls, or null if no calls processed.
Scenario UUIDs included in this execution.
Name of the simulator agent used, or null if default.
Name of the tested agent definition, or null if deleted.
ISO 8601 creation timestamp.
Errors
Missing or invalid X-Api-Key or X-Secret-Key headers.
No test run found with the specified run_test_id.
Unexpected server error. Contact support if it persists.