update-label
Modify Trello label properties such as name and color using the specified label ID, enabling precise label management in project workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | New color for the label (use "null" to remove color) | |
labelId | Yes | ID of the label to update | |
name | No | New name for the label |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "New color for the label (use \"null\" to remove color)",
"enum": [
"yellow",
"purple",
"blue",
"red",
"green",
"orange",
"black",
"sky",
"pink",
"lime",
"null"
],
"type": "string"
},
"labelId": {
"description": "ID of the label to update",
"type": "string"
},
"name": {
"description": "New name for the label",
"type": "string"
}
},
"required": [
"labelId"
],
"type": "object"
}