contact.updated

Webhook event triggered when a contact's details are updated.

The contact.updated event is triggered when a contact's information or subscription status changes.

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.updated).

created_at string

ISO 8601 timestamp when the webhook event was created.

data object

Contains the updated details of the contact.

Handling this event

When your endpoint receives a contact.updated event, you might want to:

  • Update the contact's record in your system.
  • Synchronize subscription preferences.
  • Log the change for audit purposes.
{
  "type": "contact.updated",
  "created_at": "2023-01-01T12:00:00Z",
  "data": {
    "id": "con_123456789",
    "email": "contact@example.com",
    "status": "unsubscribed",
    "timestamp": "2023-01-01T12:00:00Z"
  }
}

Learn More

Was this page helpful?

Edit this page