Langsung ke konten utama
GET
/
v3
/
stores
/
{store_id}
/
customers
/
me
/
cart
Get the authenticated customer cart
curl --request GET \
  --url https://api.scalev.com/v3/stores/{store_id}/customers/me/cart \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "item_count": 123,
  "total": "<string>",
  "items": [
    {
      "id": 123,
      "type": "variant",
      "variant_id": 123,
      "bundle_price_option_id": 123,
      "quantity": 2
    }
  ]
}

Otorisasi

Authorization
string
header
wajib

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

Parameter Path

store_id
string
wajib

Store unique_id.

Respons

Authenticated customer cart

id
integer
item_count
integer
total
items
object[]