API Responsesintermediate

Webhook Delivery Payload JSON Example

A production-style webhook event with event metadata, resource data, and delivery timestamps.

Real-world use case: Use this for event subscriptions, debugging webhook deliveries, and integration tests.
1{
2 "id": "wh_9001",
3 "type": "invoice.paid",
4 "apiVersion": "2026-01-01",
5 "createdAt": "2026-03-12T11:08:44Z",
6 "data": {
7 "invoiceId": "inv_2208",
8 "customerId": "cus_9012",
9 "amountPaid": 128.4,
10 "currency": "USD"
11 }
12}

Where this shape shows up in production

Webhooks
Third-party integrations
Replay tools

Related examples