Skip to main content
PATCH
/
v3
/
stores
/
{store_id}
/
customers
/
me
/
cart
/
items
/
{item_id}
Update an authenticated customer cart item
curl --request PATCH \
  --url https://api.myscalev.com/v3/stores/{store_id}/customers/me/cart/items/{item_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "quantity": 2
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

item_id
string
required
store_id
string
required

Store unique_id.

Body

application/json
quantity
integer
required
Required range: x >= 1

Response

Success

Raw single-resource success payload for v3.