{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/store_cart_converted", "title": "store/cart/converted", "description": "Fires when a cart/checkout is converted into an order, which is typically after the checkout payment step on the storefront. At this point, the cart is automatically deleted and no longer accessible. This webhook returns both the cart/checkout ID and order ID for correlation purposes.\n\n\n```json filename=\"Example callback object\" showLineNumbers\n{\n \"created_at\": 1561482670,\n \"store_id\": \"1025646\",\n \"producer\": \"stores/{store_hash}\",\n \"scope\": \"store/cart/converted\",\n \"hash\": \"352e4afc6dd3fc85ea26bfdf3f91852604d57528\",\n \"data\": {\n \"type\": \"cart\",\n \"id\": \"09346904-4175-44fd-be53-f7e598531b6c\",\n \"orderId\": 252\n }\n}\n```", "x-examples": {}, "allOf": [ { "$ref": "#/components/schemas/webhook_callback_base" }, { "description": "A lightweight description of the event that triggered the webhook. Will vary depending on the event registered.", "properties": { "data": { "type": "object", "description": "A lightweight description of the event that triggered the webhook. Will vary depending on the event registered.", "properties": { "type": { "type": "string", "description": "The type will always be `cart`.", "default": "cart" }, "id": { "type": "string", "description": "ID of the cart", "example": "09346904-4175-44fd-be53-f7e598531b6c" }, "orderId": { "type": "integer", "description": "ID of the order created.", "example": 252 } } } } } ], "x-tags": [ "created" ], "type": "object", "x-internal": false }