cart.checkout.created
Generated from COPE public event contracts. Do not edit this page by hand.Use this event to track the start of a payment collection attempt.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A checkout has been created.
Generated from COPE public event contracts. Do not edit this page by hand.Use this event to track the start of a payment collection attempt.
| Field | Value |
|---|---|
| Encoding | CloudEvents 1.0 structured JSON |
| Delivery | At least once |
| Idempotency | Use the CloudEvents source + id tuple, or COPE idempotency_key when available. |
| Source | cope.cart |
| Subject pattern | checkout:<identifier> |
| Category | Checkout |
| Availability | Available in the public webhook reference. |
| Schema title | cart.checkout.created v1 payload |
| Schema ID | https://schemas.cope.com/events/cart.checkout.created/v1 |
| Field | Required | Type | Allowed Values | Description |
|---|---|---|---|---|
cart_id | yes | string | - | - |
checkout_id | yes | string | - | - |
totals | yes | object | - | - |
{
"data": {
"cart_id": "example_id",
"checkout_id": "example_id",
"totals": {
"charge_currency": "example_charge_currency",
"currency": "EUR",
"discount_minor_units": 1000,
"finality": "estimate",
"gross_minor_units": 1000,
"net_minor_units": 1000,
"shipping_minor_units": 1000,
"subtotal_minor_units": 1000,
"tax_minor_units": 1000,
"total_minor_units": 1000
}
},
"datacontenttype": "application/json",
"dataschema": "https://schemas.cope.com/events/cart.checkout.created/v1",
"id": "cart.checkout.created:example",
"idempotency_key": "cart.checkout.created:example",
"source": "cope.cart",
"specversion": "1.0",
"subject": "checkout:example",
"time": "2026-05-05T12:00:00.000Z",
"type": "cart.checkout.created"
}
Was this page helpful?