get_all_subsuites
Retrieve all subsuites from a root test suite as a flat list with pagination support for efficient test case management.
Instructions
๐ Get all subsuites from a root suite as flat list with pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
include_root | No | Include the root suite in results | |
page | No | Page number (0-based) | |
project_key | Yes | Project key | |
root_suite_id | Yes | Root suite ID to get all subsuites from | |
size | No | Page size (configurable via MAX_PAGE_SIZE env var) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"include_root": {
"default": true,
"description": "Include the root suite in results",
"type": "boolean"
},
"page": {
"default": 0,
"description": "Page number (0-based)",
"minimum": 0,
"type": "integer"
},
"project_key": {
"description": "Project key",
"minLength": 1,
"type": "string"
},
"root_suite_id": {
"description": "Root suite ID to get all subsuites from",
"exclusiveMinimum": 0,
"type": "integer"
},
"size": {
"default": 50,
"description": "Page size (configurable via MAX_PAGE_SIZE env var)",
"exclusiveMinimum": 0,
"maximum": 1000,
"type": "integer"
}
},
"required": [
"project_key",
"root_suite_id"
],
"type": "object"
}