update_tag
Rename or recolor a tag.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Rename or recolor a tag. At least one of name or color must be provided. The change propagates to every resource the tag is applied to.
Input
| Property | Type | Required | Description |
|---|---|---|---|
tagId | string | yes | UUID of the tag. |
name | string | no | New tag name. min length 1 |
color | string | no | New hex color (e.g. #FF6B35). |
JSON Schema
{
"type": "object",
"properties": {
"tagId": {
"type": "string",
"description": "UUID of the tag."
},
"name": {
"type": "string",
"minLength": 1,
"description": "New tag name."
},
"color": {
"type": "string",
"description": "New hex color (e.g. `#FF6B35`)."
}
},
"required": [
"tagId"
],
"additionalProperties": false
}