get_tcm_suite_by_id
Retrieve test suite details by ID from Zebrunner Test Case Management, including project context and optional output formats for reporting.
Instructions
๐ Find TCM suite by ID with comprehensive search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
include_clickable_links | No | Include clickable links to Zebrunner web UI | |
only_root_suites | No | Search only in root suites | |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') | |
suite_id | Yes | Suite ID to find |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"include_clickable_links": {
"default": false,
"description": "Include clickable links to Zebrunner web UI",
"type": "boolean"
},
"only_root_suites": {
"default": false,
"description": "Search only in root suites",
"type": "boolean"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
},
"suite_id": {
"description": "Suite ID to find",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"project_key",
"suite_id"
],
"type": "object"
}