Removing products from cart
How to remove an item from your shopping cart
You have some items in your shopping cart and you want to remove one of them.

A sample cart item removal
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.Request
Response
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' \
On success, the API responds with a
204 No Content
status code.Last modified 1yr ago