contact.deleted
Webhook event triggered when a contact is deleted.
The contact.deleted event is triggered when a contact is permanently removed from one of your audiences.
Event Details
All webhook payloads follow a consistent top-level structure with event-specific data nested within the data object.
type string
The event type that triggered the webhook (e.g., contact.deleted).
created_at string
ISO 8601 timestamp when the webhook event was created.
data object
Contains the ID of the deleted contact.
Handling this event
When your endpoint receives a contact.deleted event, you might want to:
- Purge the contact from your local cache or database.
- Stop any active communication threads.
- Update your audience metrics.
{
"type": "contact.deleted",
"created_at": "2023-01-01T12:00:00Z",
"data": {
"id": "con_123456789",
"email": "contact@example.com",
"timestamp": "2023-01-01T12:00:00Z"
}
}Learn More
Was this page helpful?