{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/store_cart_deleted", "title": "store/cart/deleted", "description": "Fires when a cart is deleted. Carts are deleted in two ways; when all items are removed from a cart, and when an API consumer explicitly removes the cart using a `DELETE` request. Cart deletion ends the cart lifecycle. The `store/cart/updated` webhook also fires when the last item is removed.\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/deleted\",\n \"hash\": \"352e4afc6dd3fc85ea26bfdf3f91852604d57528\",\n \"data\": {\n \"type\": \"cart\",\n \"id\": \"09346904-4175-44fd-be53-f7e598531b6c\"\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.", "properties": { "type": { "type": "string", "description": "can be `cart` or `cart_line_item`", "example": "cart" }, "id": { "type": "string", "description": "ID of the cart", "example": "09346904-4175-44fd-be53-f7e598531b6c" } } } } } ], "x-tags": [ "deleted" ], "type": "object", "x-internal": false }