# Customer created

Webhook sent when a new customer is created.

Endpoint: POST CustomerCreated
Version: 2.0.0
Security: signatureAuth

## Request fields (application/json):

  - `event_id` (string, required)
    Unique identifier of the event.
    Example: 2c871666-c3a4-4a4e-89a8-fc8956e95731

  - `event_type` (string, required)
    Type of the event.
    Enum: "CUSTOMER_CREATED"

  - `occurred_at` (string, required)
    Date and time when the event occurred.
    Example: 2026-04-03T16:18:40.000000Z

  - `data` (object, required)
    Event payload containing the affected customer record.

  - `data.customer` (object, required)
    Represents a customer profile.

  - `data.customer.type` (string, required)
    Customer type.
    Example: INDIVIDUAL

  - `data.customer.business_details` (object)
    Business-specific details for a customer profile.

  - `data.customer.business_details.name` (string)
    Legal business name.
    Example: Acme Corporation

  - `data.customer.business_details.legal_address` (object)
    Registered legal address of the business.

  - `data.customer.business_details.legal_address.city` (string, required)
    City name.
    Example: Anytown

  - `data.customer.business_details.legal_address.country` (string, required)
    Country according to the ISO-3166 alpha-3 country code.
    Enum: "AUS", "BRA", "CAN", "CHN", "IND", "KOR", "MEX", "MYS", "NZL", "USA"

  - `data.customer.business_details.legal_address.line1` (string, required)
    Address line 1.
    Example: 123 Main St

  - `data.customer.business_details.legal_address.line2` (string)
    Address line 2.
    Example: Suite 456

  - `data.customer.business_details.legal_address.state` (string, required)
    State or province.
    Example: CA

  - `data.customer.business_details.legal_address.postal_code` (string, required)
    Postal or ZIP code.
    Example: 12345

