Skip to main content
GET
/
v3
/
stores
/
{store_id}
/
customers
/
me
/
orders
List authenticated customer orders
curl --request GET \
  --url https://api.myscalev.com/v3/stores/{store_id}/customers/me/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "<unknown>"
  ],
  "is_paginated": true,
  "has_next": true,
  "last_id": 123,
  "page_size": 123,
  "page": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

store_id
string
required

Store unique_id.

Response

Success paginated collection response

Paginated list payload for v3.

data
any[]
required
is_paginated
enum<boolean>
required
Available options:
true
Example:

true

has_next
boolean
last_id
page_size
integer
page
integer