# Customer updated

Webhook sent when a customer is updated.

Endpoint: POST CustomerUpdated
Version: 2.0.0
Security: signatureAuth

## Request fields (application/json):

  - `event_id` (string, required)
    Unique identifier of the event.
    Example: e607ccd9-db36-4b75-a589-70228aebcc38

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

  - `occurred_at` (string, required)
    Date and time when the event occurred.
    Example: 2026-04-03T16:19:54.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

