Nurama Developers

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

PropertyTypeRequiredDescription
tagIdstringyesUUID of the tag.
namestringnoNew tag name. min length 1
colorstringnoNew 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
}

On this page