Skip to main content

Get Orders

Get a specific order

An individual order can be fetched by a GET request to /order/:orderNumber endpoint. Suppose we have to fetch the order whose order number is sf1234. The request will be made to /order/sf1234.

If the order exists, it will be received in the response. Get a specific Order has outlines for this endpoint.

Get all Orders

All the existing orders can be accessed using a GET request to /orders. The reference can be found in Get all Orders. Orders can be filtered based on orderNumber, merchantOrderId, Order and payment status.

To receive order data as a paginated response, include pageSize and page as query parameters to the API URL.