v1

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

Fetch Applied Tag

Retrieve an applied tag for a contact

get/contacts/applied_tags/{id}

Path parameters

idstring required

Response

OK

idinteger

Applied Tag ID

public_idstring nullable

Applied Tag public ID

contact_idinteger

Contact ID

tag_idinteger

Tag ID

created_atstring date-time nullable

Date added

updated_atstring date-time nullable

Last updated

Example response

{
  "id": 1,
  "public_id": "PYfeiE",
  "contact_id": 1,
  "tag_id": 3,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z",
  "tag": {
    "public_id": "KekAvg",
    "name": "Example Tag",
    "color": "#00FF00"
  },
  "contact": {
    "$ref": "#/components/schemas/ContactShortAttributes/example"
  }
}