v1

latestOpenAPI 3.1.02026-07-263788129.7 KB
Tags

Update a Tag

Updates a tag's name and/or color by its tag_id. The object type of a tag cannot be changed.

patch/v1/tags/{tag_id}

Path parameters

tag_idstring uuid required

Request body

namestring nullable

Display name of the tag. Letters, numbers, and spaces only.

color'green' | 'blue' | 'red' | 'yellow' | 'purple' | 'berry' | 'peach' | 'gray'

Example request

{
  "name": "Enterprise"
}

Response

Successful Response

Example response

{
  "data": {
    "name": "Enterprise",
    "color": "blue"
  }
}