get_launch_details
Retrieve comprehensive launch data including test sessions and execution details from Zebrunner reporting API for test analysis and reporting.
Instructions
๐ Get comprehensive launch details including test sessions (uses new reporting API with enhanced authentication)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
includeLaunchDetails | No | Include detailed launch information | |
includeTestSessions | No | Include test sessions data | |
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"
},
"includeLaunchDetails": {
"default": true,
"description": "Include detailed launch information",
"type": "boolean"
},
"includeTestSessions": {
"default": true,
"description": "Include test sessions data",
"type": "boolean"
},
"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"
}