📄️ Cart API Overview
Manage shopping carts, items, and checkout workflows. All cart endpoints require authentication.
📄️ Create Cart Flow
This document provides a step-by-step guide for implementing the Create Cart flow in your React application.
📄️ Create Cart
Create a new empty cart. Returns a unique `cartId` which you’ll use in all subsequent cart operations.
📄️ Get Cart
Retrieves the cart associated with a specific customer.
📄️ Add Item to Cart
Add a product item to an existing cart. Updates the cart with the specified product variant and quantity.
📄️ Remove Item from Cart
Remove a specific product item from an existing cart.
📄️ Delete All Cart
Completely removes an existing cart from the system.
📄️ Cart API Response
Detailed breakdown of the JSON response structure returned by cart-related API endpoints.