curl --request GET \
--url https://api.chargeblast.com/api/v2/orders \
--header 'X-API-Key: <x-api-key>'{
"total": 123,
"page": 123,
"per": 123,
"orders": [
"<string>"
]
}Get all the orders from your chargeblast account. Receipt info is omitted from this endpoint.
curl --request GET \
--url https://api.chargeblast.com/api/v2/orders \
--header 'X-API-Key: <x-api-key>'{
"total": 123,
"page": 123,
"per": 123,
"orders": [
"<string>"
]
}Your API key. Sent in the X-API-Key header.
The starting page of the request. Default value of 0.
How many objects to request per page. Default value of 10.