add-issues-to-module
Add multiple issues to a specific module within a Plane project to organize and group related tasks together for better project management.
Instructions
Add issues to a module
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issues | Yes | Array of issue IDs to add to the module | |
module_id | Yes | ID of the module to add issues to | |
project_id | Yes | ID of the project containing the module |
Input Schema (JSON Schema)
{
"properties": {
"issues": {
"description": "Array of issue IDs to add to the module",
"items": {
"type": "string"
},
"type": "array"
},
"module_id": {
"description": "ID of the module to add issues to",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the module",
"type": "string"
}
},
"required": [
"project_id",
"module_id",
"issues"
],
"type": "object"
}