Get orders
Retrieve a list of orders with optional filtering, pagination and sorting
Authorizations
API key authentication using Basic Auth. Use your API key as both username and password. See the Authentication guide for complete setup instructions.
Query Parameters
Search orders by customer name, email or order ID
"john@example.com"
Number of records to skip for pagination
x >= 0
Maximum number of records to return (max 1000)
1 <= x <= 1000
Sort direction
asc
, desc
Field to sort by
price
, date
, order_id
Include detailed order information
Order number for the order you would like to load
Fetch paid orders since a specific date. UNIX timestamp should be used here
"1596097247"
Fetch paid orders up to a specific date. UNIX timestamp should be used here
"1596097247"
Fetch orders since a specific status transition date. UNIX timestamp should be used here
"1596097247"
Fetch orders with a specific status. Can be used together with from_date_paid parameter
"done"
Optional. Used together with a specific order_id and will return app specific order data (such as productproperties from the order)
true
Response
Orders retrieved successfully
The response is of type object[]
.