v93

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Tags

Update tag

Updates a tag definition's color. System tags cannot be updated.

patch/tags/{tagId}

Path parameters

tagIdstring required

Tag definition ID.

Request body

colorstring required

Tag color. One of: gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose.

Example request

{
  "color": "green"
}

Response

Tag updated

successboolean

Example response

{
  "success": true,
  "tag": {
    "id": "tag_abc123",
    "name": "premium",
    "color": "#f97316"
  }
}