Orders

GET /orders

Simple orders list without details.

Allowed query parameters:
  • page - simple pagination, starting from 1
  • search - simple text search but it’s quite powerful, try it out, it even works with EANs, invoice numbers and every other aspect of the order

Curl example:

curl -XGET https://api.url/orders?page=2&search=adidas -H 'Authorization: Bearer ACCESS_TOKEN'

GET /orders/{uuid}

If you want to know order’s details (containing detailed list of ordered items), try this endpoint. You can get UUID from GET /orders endpoint.

Curl example:

curl -XGET https://api.url/orders/410069a7-c69c-4c2f-a5f3-002bc394f522 -H 'Authorization: Bearer ACCESS_TOKEN'