remove-issue-from-module
Remove an issue from a module in Plane project management by specifying project, module, and issue IDs to maintain organized workflows.
Instructions
Remove an issue from a module
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue to remove from the module | |
| module_id | Yes | ID of the module to remove issue from | |
| project_id | Yes | ID of the project containing the module |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to remove from the module",
"type": "string"
},
"module_id": {
"description": "ID of the module to remove issue from",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the module",
"type": "string"
}
},
"required": [
"project_id",
"module_id",
"issue_id"
],
"type": "object"
}