update-label
Modify an existing label's properties such as name, description, or color within a specified project in Plane project management system.
Instructions
Update an existing label in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Updated color code for the label (optional) | |
| description | No | Updated description of the label (optional) | |
| label_id | Yes | ID of the label to update | |
| name | No | Updated name of the label (optional) | |
| project_id | Yes | ID of the project containing the label |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Updated color code for the label (optional)",
"type": "string"
},
"description": {
"description": "Updated description of the label (optional)",
"type": "string"
},
"label_id": {
"description": "ID of the label to update",
"type": "string"
},
"name": {
"description": "Updated name of the label (optional)",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the label",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}