delete-module
Remove a module from a Plane project by specifying the project ID and module ID to manage project structure and organization.
Instructions
Delete a module from a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| module_id | Yes | ID of the module to delete | |
| project_id | Yes | ID of the project containing the module |
Input Schema (JSON Schema)
{
"properties": {
"module_id": {
"description": "ID of the module to delete",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the module",
"type": "string"
}
},
"required": [
"project_id",
"module_id"
],
"type": "object"
}