list-sub-issues
Retrieve all sub-issues associated with a specific parent issue in Plane project management, enabling hierarchical issue tracking and dependency management.
Instructions
List all sub-issues of a parent issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_issue_id | Yes | ID of the parent issue to get sub-issues for | |
| project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"parent_issue_id": {
"description": "ID of the parent issue to get sub-issues for",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"parent_issue_id"
],
"type": "object"
}