Delete Cart
This API is used to delete an item from the shopping cart
{
"items": [
{
"item_id": 97337,
"sku": "IFPZMB-RD0",
"qty": 1
}
]
}curl --location --request DELETE '{{Base_url}}/rest/V1/carts/mine/items/97337' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJraWQiOiIxIiwiYWxnIjoiSFMyNTYifQ.eyJ1aWQiOjIxMDAyNywidXR5cGlkIjozLCJpYXQiOjE3Mzc0NjcwMDQsImV4cCI6MTczNzQ3MDYwNH0.7ns-z-L5XysjFdCRy9X8RroLGQA-kixwDthq6C1ii-Q' \
--header 'Cookie: PHPSESSID=2639naaq26nbe7st472kk4ms4i' \
--data '{
"items": [
{
"item_id": 97337,
"sku": "IFPZMB-RD0",
"qty": 1
}
]
}
'Last updated