v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Contacts::Tag

Update Tag

Update a Contact Tag

put/contacts/tags/{id}

Path parameters

idstring required

Request body

Example request

{
  "contacts_tag": {
    "contacts_tag": {
      "name": "renamed-tag",
      "color": "#FF5733"
    }
  }
}

Response

OK

idinteger

Tag ID

public_idstring nullable

Tag public ID

workspace_idinteger

Workspace ID

namestring

Name

colorstring

Color

created_atstring date-time nullable

Created at datetime

updated_atstring date-time nullable

Updated at datetime

Example response

{
  "id": 4,
  "public_id": "LutgGM",
  "workspace_id": 42000,
  "name": "Example Tag",
  "color": "#00FF00",
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}