get_root_id_by_suite_id
Find the root test suite ID for any given suite ID in Zebrunner test management. Use this tool to navigate test suite hierarchies and identify parent relationships within your project structure.
Instructions
๐ Get root suite ID for a specific suite ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') | |
suite_id | Yes | Suite ID to find root for |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
},
"suite_id": {
"description": "Suite ID to find root for",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"project_key",
"suite_id"
],
"type": "object"
}