# Tags

# Tag Added

Fired when a tag is applied to a contact.

Payload Type Description
event string TagAdded
email string Email of the contact who was tagged
tag string Name of the tag applied
date string When the event occurred

# Example Payload

{
    "event": "TagAdded",
    "email": "john@example.com",
    "tag": "Customer",
    "date": "2024-01-15 10:30:00"
}

# Tag Removed

Fired when a tag is removed from a contact.

Payload Type Description
event string TagRemoved
email string Email of the contact who was un-tagged
tag string Name of the tag removed
date string When the event occurred

# Example Payload

{
    "event": "TagRemoved",
    "email": "john@example.com",
    "tag": "Customer",
    "date": "2024-01-20 14:15:00"
}