Saltar al contenido principal

Store

Retrieve, modify & place an order for a customer's shopping cart

GET /store/user/cart

Will return the products, pricing, shipping rates and payment options set in a customer's cart.

DELETE /store/user/cart

Will remove all products from the customers cart and set everything to their initial state.

POST /store/user/cart/product/{$itemcode}

Will add the provided quantity to the existing quantity of the product in the cart.

PATCH /store/user/cart/product/{$itemcode}

Will set the provided quantity of the product in the cart.

DELETE /store/user/cart/product/{$itemcode}

Will remove all of the product from the cart.