get_test_run_by_id
Retrieve detailed test run information by ID from Zebrunner's public API to access execution data, results, and reporting metrics for quality assurance analysis.
Instructions
๐ Get detailed Test Run information by ID from Public API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: raw API response or formatted data | formatted |
id | Yes | Test Run ID | |
project | No | Project alias ('web', 'android', 'ios', 'api') or project key | web |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format: raw API response or formatted data",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"id": {
"description": "Test Run ID",
"exclusiveMinimum": 0,
"type": "integer"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
}
],
"default": "web",
"description": "Project alias ('web', 'android', 'ios', 'api') or project key"
}
},
"required": [
"id"
],
"type": "object"
}