update-module
Modify an existing module's properties such as name, description, dates, status, lead, and members within a Plane project to reflect current project requirements.
Instructions
Update an existing module in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Updated description of the module (optional) | |
| lead | No | Updated user ID of the module lead (optional) | |
| members | No | Updated array of user IDs for module members (optional) | |
| module_id | Yes | ID of the module to update | |
| name | No | Updated name of the module (optional) | |
| project_id | Yes | ID of the project containing the module | |
| start_date | No | Updated start date of the module (YYYY-MM-DD format, optional) | |
| status | No | Updated status of the module (optional) | |
| target_date | No | Updated target end date of the module (YYYY-MM-DD format, optional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Updated description of the module (optional)",
"type": "string"
},
"lead": {
"description": "Updated user ID of the module lead (optional)",
"type": "string"
},
"members": {
"description": "Updated array of user IDs for module members (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"module_id": {
"description": "ID of the module to update",
"type": "string"
},
"name": {
"description": "Updated name of the module (optional)",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the module",
"type": "string"
},
"start_date": {
"description": "Updated start date of the module (YYYY-MM-DD format, optional)",
"type": "string"
},
"status": {
"description": "Updated status of the module (optional)",
"enum": [
"planned",
"in-progress",
"paused",
"completed",
"cancelled"
],
"type": "string"
},
"target_date": {
"description": "Updated target end date of the module (YYYY-MM-DD format, optional)",
"type": "string"
}
},
"required": [
"project_id",
"module_id"
],
"type": "object"
}