Skip to main content
PUT
/
connector-tags
/
{id}
curl -X PUT "https://api.clustr-ai.com/api/public/connector-tags/a1b2c3d4" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"color": "#16A34A"}'
{
  "success": true,
  "data": {
    "id": "a1b2c3d4-...",
    "name": "Investor",
    "color": "#16A34A",
    "position": 0
  }
}
Update a connector tag. Only the fields you provide are changed.

Path Parameters

id
string
required
Tag UUID (from List Tags)

Body

name
string
New tag name
color
string
New hex color code
position
integer
New sort position
curl -X PUT "https://api.clustr-ai.com/api/public/connector-tags/a1b2c3d4" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"color": "#16A34A"}'
{
  "success": true,
  "data": {
    "id": "a1b2c3d4-...",
    "name": "Investor",
    "color": "#16A34A",
    "position": 0
  }
}