v1

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

Create Applied Tag

Assign a tag to a contact by creating an applied tag

post/contacts/{contact_id}/applied_tags

Path parameters

contact_idinteger required

Request body

Example request

{
  "contacts_applied_tag": {
    "contacts_applied_tag": {
      "tag_id": 3
    }
  }
}

Response

Created

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"
  }
}