Dictionary

A dictionary with fields

Field Type Description
status String Optional. Only return orders with this status
created_after Timestamp Optional. Only return orders that were placed after (including) this timestamp. Do not use this for pagination as multiple orders might share the same created_at timestamp.
created_before Timestamp Optional. Only return orders that were placed before (including) this timestamp. 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. Before isn't the same as smaller, it might return IDs that are larger than the given id from orders that are validated before the given order id! Use for pagination.
after_id Int Optional. Only return orders created after (not including) the order with the given id. After isn't the same as larger, it might return IDs that are smaller than the given id from orders that are validated after the given order id! Use for pagination.
sort String Optional. Sort the results in ascending or descending (default) order by creation date (the date an order is paid or validated). Default is ascending.

Examples

Example 1

{
    "status": "PENDING",
    "created_after": 1657086119,
    "created_before": 1657086119,
    "before_id": 15,
    "after_id": 11,
    "sort": "ascending"
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.0.1 stable