POST
/
cart
/
remove
/
{id}
Remove an item from the cart
curl --request POST \
  --url https://v3.minestorecms.com/api/cart/remove/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the item to remove from the cart.

Response

Successful response indicating the item was removed from the cart.

The response is of type object.