get_all_launches_for_project
Retrieve all test execution launches for a specific project with pagination support, using Zebrunner's reporting API to access launch data in raw or formatted output.
Instructions
๐ Get all launches for a project with pagination (uses new reporting API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format - 'raw' for full API response, 'formatted' for user-friendly display | formatted |
page | No | Page number (starts from 1) | |
pageSize | No | Number of launches per page (max 100) | |
project | Yes | Project alias (web/android/ios/api), project key, or project ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format - 'raw' for full API response, 'formatted' for user-friendly display",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"page": {
"default": 1,
"description": "Page number (starts from 1)",
"exclusiveMinimum": 0,
"type": "integer"
},
"pageSize": {
"default": 20,
"description": "Number of launches per page (max 100)",
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
},
{
"type": "number"
}
],
"description": "Project alias (web/android/ios/api), project key, or project ID"
}
},
"required": [
"project"
],
"type": "object"
}