list-module-issues
Retrieve all issues associated with a specific module within a Plane project to track progress and manage development tasks.
Instructions
List all issues in a specific module
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| module_id | Yes | ID of the module to get issues from | |
| project_id | Yes | ID of the project containing the module |
Input Schema (JSON Schema)
{
"properties": {
"module_id": {
"description": "ID of the module to get issues from",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the module",
"type": "string"
}
},
"required": [
"project_id",
"module_id"
],
"type": "object"
}