POST
/
cart
/
reload
/
{id}
Reload the quantity of an item in the cart
curl --request POST \
  --url https://v3.minestorecms.com/api/cart/reload/{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 update in the cart.

Query Parameters

count
integer
required

The new quantity of the item to set in the cart.

Example:

1

Response

Successful response indicating the item quantity was updated or removed from the cart.

success
boolean

Indicates if the operation was successful.