Parameters
JSON body
Request body
application/jsonidstringRequiredCart identifier (32-char shop__cart.identifier) to delete.
Hard-deletes a cart together with its line items and applied vouchers. Multi-tenant safe — only carts of the calling organisation can be removed.
JSON body
idstringRequiredCart identifier (32-char shop__cart.identifier) to delete.
1 status code documented
successbooleanRequiredtruedeletedbooleanRequireditemCountnumberRequiredNumber of cart items removed alongside the cart.
voucherCountnumberRequiredNumber of cart-voucher rows removed alongside the cart.
{
"success": true,
"deleted": false,
"itemCount": 0,
"voucherCount": 0
}POST /bff/cart/delete
curl -X POST "https://api.bizkithub.com/bff/cart/delete" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "example_id"
}'All BizKitHub public API endpoints require authentication via API key.