Skip to main content
PATCH
/
v1
/
tags
/
{tag_id}
Update a Tag
curl --request PATCH \
  --url https://api.monaco.com/v1/tags/{tag_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Enterprise",
  "color": "blue"
}
'
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Strategic Enterprise",
    "color": "purple"
  },
  "meta": {
    "timestamp": "2026-04-22T09:30:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.monaco.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

tag_id
string<uuid>
required

Body

application/json

Request body for updating a tag via PATCH.

name
string | null

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

Required string length: 1 - 100
Pattern: ^[a-zA-Z0-9\s]+$
Example:

"Enterprise"

color
enum<string> | null

Display color of the tag.

Available options:
green,
blue,
red,
yellow,
purple,
berry,
peach,
gray
Example:

"blue"

Response

Successful Response

data
TagResponse · object
required
meta
ResponseMeta · object