Removing products from cart

How to remove an item from your shopping cart

Problem

You have some items in your shopping cart and you want to remove one of them.

A sample cart item removal

Solution

Removing a product (SKU) from your shopping cart means deleting an existing line item. To do that, send a DELETE request to the /api/line_items/:id endpoint.

Example

The following request removes the line item identified by the "aBmNkPQRst" ID from your shopping cart:

curl -g -X DELETE \
  'http://yourdomain.commercelayer.io/api/line_items/aBmNkPQRst' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \

More to read

See our documentation if you need more information on how to delete a line item.

Last updated