get_all_tcm_test_case_suites_by_project
Retrieve all test case suites for a specific project from Zebrunner Test Case Management, including hierarchical structure and multiple output formats.
Instructions
๐ Get ALL TCM test case suites by project using comprehensive pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
include_hierarchy | No | Include hierarchy information (rootSuiteId, parentSuiteName, etc.) | |
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"
},
"include_hierarchy": {
"default": true,
"description": "Include hierarchy information (rootSuiteId, parentSuiteName, etc.)",
"type": "boolean"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}