Skip to main content
POST
/
orders
/
customer
/
{customerId}
Get Customers Order History
curl --request POST \
  --url https://gateway.varchev.com/wallet/orders/customer/{customerId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'tenantId: <tenantid>' \
  --data '
{
  "range": "HOUR",
  "page": 1,
  "take": 10
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.varchev.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

tenantId
string
required

Path Parameters

customerId
string
required

Body

application/json
range
enum<string>
required
Available options:
HOUR,
DAY,
WEEK,
MONTH,
YEAR,
ALL
page
number
default:1
Required range: x >= 1
take
number
default:10
Required range: 1 <= x <= 50

Response

201

Get Customers Order History