Skip to main content
Event triggered whenever a contact was successfully created. Note: When importing multiple contacts using CSV, these events won’t be triggered. Contact support if you have any questions.

Response Body Parameters

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.created).
created_at
string
ISO 8601 timestamp when the webhook event was created.
data
object
Event-specific data containing detailed information about the event. The data object for the contact.created event contains the following parameters:
{
  "type": "contact.created",
  "created_at": "2024-11-17T19:32:22.980Z",
  "data": {
    "id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
    "audience_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
    "segment_ids": ["78261eea-8f8b-4381-83c6-79fa7120f1cf"],
    "created_at": "2024-11-17T19:32:22.980Z",
    "updated_at": "2024-11-17T19:32:22.980Z",
    "email": "[email protected]",
    "first_name": "Steve",
    "last_name": "Wozniak",
    "unsubscribed": false
  }
}