Dictionary

A dictionary with fields

Field Type Description
status String Optional. Only return orders with this status
created_after DateTime Optional. Only return orders that were placed after (including) this date/time. Brussels timezone. Do not use this for pagination as multiple orders might share the same created_at timestamp.
created_before DateTime Optional. Only return orders that were placed before (including) this date/time. Brussels timezone. You can use this together with created_after. Do not use this for pagination as multiple orders might share the same created_at timestamp.
before_id Int Optional. Only return orders created before (not including) the order with the given id. Used for pagination.
after_id Int Optional. Only return orders created after (not including) the order with the given id. Used for pagination.
sort String Optional. Sort the results in ascending (default) or descending order by creation date. Default is ascending.

Examples

Example 1

{
    "status": "PENDING",
    "created_after": "2019-01-31 12:00:00",
    "created_before": "2019-01-31 12:00:00",
    "before_id": 13,
    "after_id": 18,
    "sort": "ascending"
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
0.2.0 stable