get_test_plan
Retrieve a single test plan with summary details, including test case count, configurations, runs, and execution progress. Use by test plan ID or title.
Instructions
Fetch a single test plan with summary details:
Included test cases count
Test plan configurations
Test plan runs
Current execution progress status
Required: id or title Optional: project_id, include_configurations, include_runs, runs_limit, runs_offset, runs_sort
Example: { "id": 812, "project_id": 16 }
or
{ "title": "Release 3.0 Regression", "project_id": 16 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Test plan ID to retrieve. Accepts numeric ID or title string. | |
| title | No | Test plan title to retrieve (alternative to id). | |
| project_id | No | Project ID (uses default if not specified) | |
| include_configurations | No | Include test plan configurations in the response (default: true) | |
| include_runs | No | Include test plan runs in the response (default: true) | |
| runs_limit | No | Maximum number of runs to return (1-100, default: 20) | |
| runs_offset | No | Number of runs to skip (default: 0) | |
| runs_sort | No | Run sort expression (default: "id:desc") | id:desc |