get_launch_summary
Retrieve launch summary data from Zebrunner test management system using project and launch identifiers to access high-level test execution results.
Instructions
๐ Get quick launch summary without detailed test sessions (uses new reporting API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
launchId | Yes | Launch ID (e.g., 118685) | |
projectId | No | Project ID (e.g., 7) - alternative to projectKey | |
projectKey | No | Project key (e.g., 'android' or 'ANDROID') - alternative to projectId |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string"
],
"type": "string"
},
"launchId": {
"description": "Launch ID (e.g., 118685)",
"exclusiveMinimum": 0,
"type": "integer"
},
"projectId": {
"description": "Project ID (e.g., 7) - alternative to projectKey",
"exclusiveMinimum": 0,
"type": "integer"
},
"projectKey": {
"description": "Project key (e.g., 'android' or 'ANDROID') - alternative to projectId",
"minLength": 1,
"type": "string"
}
},
"required": [
"launchId"
],
"type": "object"
}