list_module_issues
Retrieve all issues associated with a specific module in a project using the project and module UUID identifiers. Ideal for managing and analyzing module-related tasks within Plane's project management system.
Instructions
Get all issues for a specific module
Input Schema
Name | Required | Description | Default |
---|---|---|---|
module_id | Yes | The uuid identifier of the module to get issues for | |
project_id | Yes | The uuid identifier of the project containing the module |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"module_id": {
"description": "The uuid identifier of the module to get issues for",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the module",
"type": "string"
}
},
"required": [
"project_id",
"module_id"
],
"type": "object"
}