get_tcm_test_suites_by_project
Retrieve test suites for a specific project from Zebrunner Test Case Management with pagination support to organize and access testing components systematically.
Instructions
๐ Get TCM test suites by project with pagination (Java methodology)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
max_page_size | No | Maximum page size for pagination | |
page_token | No | Page token for pagination | |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"max_page_size": {
"default": 100,
"description": "Maximum page size for pagination",
"exclusiveMinimum": 0,
"maximum": 1000,
"type": "integer"
},
"page_token": {
"description": "Page token for pagination",
"type": "string"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}