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