Skip to main content
WEBHOOK
order.expired
{
  "eventId": "b3a2d5c4-1f2e-4a6b-9c7d-1234567890ab",
  "type": "<string>",
  "occurredAt": "2023-11-07T05:31:56Z",
  "data": {
    "orderId": "ce0539b4-ec57-4709-b72e-47892586d05a",
    "status": "PENDING",
    "customerId": "<string>",
    "customer": {
      "customerId": "<string>",
      "name": "<string>"
    },
    "pricing": {
      "subtotal": 123,
      "total": 123,
      "currency": "USD"
    },
    "lineItemCount": 3,
    "validationStatus": "VALID",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "expiresAt": "2023-11-07T05:31:56Z"
  }
}

Body

application/json
eventId
string<uuid>
required

Unique identifier for this event (stable for the logical event; multiple delivery attempts reuse the same id). Use for idempotency.

Example:

"b3a2d5c4-1f2e-4a6b-9c7d-1234567890ab"

type
string
required

Event type identifier (dot namespaced, e.g. subscription.created).

Allowed value: "order.expired"
occurredAt
string<date-time>
required

RFC 3339 timestamp when the underlying change occurred.

data
object
required

Expired order snapshot. Event-specific payload; structure depends on event type.

Response

Acknowledged

I