update_label
Modify an existing project label by updating its name, color, description, or priority to maintain organized issue tracking and categorization.
Instructions
Update an existing label in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| label_id | Yes | The ID or title of a project's label | |
| new_name | No | The new name of the label | |
| color | No | The color of the label given in 6-digit hex notation with leading '#' sign | |
| description | No | The new description of the label | |
| priority | No | The new priority of the label |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "The color of the label given in 6-digit hex notation with leading '#' sign",
"type": "string"
},
"description": {
"description": "The new description of the label",
"type": "string"
},
"label_id": {
"description": "The ID or title of a project's label",
"type": "string"
},
"new_name": {
"description": "The new name of the label",
"type": "string"
},
"priority": {
"description": "The new priority of the label",
"type": [
"number",
"null"
]
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}