Skip to main content
WEBHOOK
customersCustomerDeleted
{
  "eventId": "3a7f8b2e-1c4d-4e9a-b5f6-d8a2c0e7f194",
  "eventType": "customers.customer.deleted",
  "timestamp": "2026-04-01T12:00:02Z",
  "data": {
    "customerId": "customer_38d54acb-0868-431c-a88e-1ffcb62655eb"
  }
}

Authorizations

X-Hook0-Signature
string
header
required

HMAC-SHA256 signature of the raw request body, computed using your webhook secret. Webhook receivers should always verify this header before processing the event. The header value is hex-encoded and prefixed by the algorithm and timestamp, e.g. t=1700000000,v1=abc123... (refer to the Webhook Security docs for the exact verification algorithm).

This scheme applies to webhook delivery (outbound POSTs from CDP to your endpoint), not to inbound CDP API requests.

Body

application/json

The customers.customer.deleted webhook event payload.

Common envelope fields included in every Customers webhook event payload.

eventId
string<uuid>
required

Unique identifier for this webhook event. Use this for idempotency.

Example:

"3a7f8b2e-1c4d-4e9a-b5f6-d8a2c0e7f194"

eventType
enum<string>
required

The type of webhook event.

Available options:
customers.customer.deleted
Example:

"customers.customer.deleted"

timestamp
string<date-time>
required

The UTC ISO 8601 timestamp at which the underlying state change occurred, not the time at which this webhook was delivered.

Example:

"2026-04-01T12:00:02Z"

data
object
required

Payload body for the customers.customer.deleted event. Emitted when the Customer record is deleted; this transition is terminal.

Example:
{
"customerId": "customer_38d54acb-0868-431c-a88e-1ffcb62655eb"
}

Response

Webhook received and processed successfully.