Get Orders List

This endpoint returns a list of order. # Pagination Two pagination methods are possible on this endpoint. You may even use both.

Paging

The returned orders limit is 10, by default. You may increase it with a query parameter "perPage". You can navigate through the pages with the query parameter "page" (starts at one). For example: \/Partner/Orders?page=1&perPage=20.

Forward-only

You may either provide the "last" query parameter with the latest UUID that you've got on your last query. Only orders that are after such "last" order on the complete list will be returned (as this endpoint returns the newest order first, this means that once you use "last", it will only return orders that are older than the "last"). # Filtering Two available filters are possible. You may use both of them concurrently.

By user

It's possible to return only transactions related to one or more users. For such filter, use the "users" query parameter, which should contain a comma-separated list of user UUIDs. Example: \/Partner/Orders?users=9b6d6f6b-f6bf-4092-9ae6-24615822923a,6eff62da-8bfd-4c48-8df7-3f7284633875.

By date

Use the "from" and "to" query parameters to define dates (YYYY-MM-DD hh:mm:ss, in UTC) for starting and ending your time range. The "from" time is inclusive (orders created exactly on such moment will be listed) and the "to" parameter is exclusive (orders will only be listed if created before such time).

Language
Credentials
Basic
base64
:
URL
Click Try It! to start a request and see the response here!