email.clicked
Webhook event triggered when a link in an email is clicked.
The email.clicked event is triggered when a recipient clicks a link within an email.
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., email.clicked).
created_at string
ISO 8601 timestamp when the webhook event was created.
data object
Contains the event-specific details such as email ID, link URL, and recipient info.
Handling this event
When your endpoint receives an email.clicked event, you might want to:
- Track user engagement in your CRM.
- Trigger follow-up marketing actions.
- Analyze click-through rates.
{
"type": "email.clicked",
"created_at": "2023-01-01T12:00:00Z",
"data": {
"email_id": "em_123456789",
"to": ["recipient@example.com"],
"url": "https://example.com/promo",
"timestamp": "2023-01-01T12:00:00Z"
}
}Learn More
Was this page helpful?