List orders
shop_list_ordersReturns a list of the orders that belong to the specified shop. Only orders with a "PENDING", "FULFILLED", "DELIVERED" or "CANCELLED" status are listed and the results are paginated (20 orders displayed on each page by default). Guidance: Returns a list of the orders that belong to the specified shop. Only orders with a PENDING, FULFILLED, DELIVERED or C...
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number. | |
| status | No | Restricts the list of returned orders to a certain status. To filter several statuses use the following syntax: `?status={STATUS1}&status={STATUS2}` | |
| per_page | No | Number of orders displayed on each page. | |
| creation_date_to | No | Restricts the list of returned orders to the ones created **before** (or on) the provided datetime. This parameter should use the following format `yyyy-mm-ddThh:MM` (year, month, day, 24-hour and minute) and be expressed in UTC time. | |
| delivery_date_to | No | Restricts the list of returned orders to the ones whose selected delivery slot lands **before** (or on) the provided datetime. This parameter should use the following format `yyyy-mm-ddThh:MM` (year, month, day, 24-hour and minute) and be expressed in UTC time. When this filter is applied, orders that do not have a selected delivery slot (shipped by transporter, for instance) will **not** be returned. Also, note that a delivery slot is said to land before a given datetime if its `slot_end` value comes before that datetime. | |
| creation_date_from | No | Restricts the list of returned orders to the ones created **after** (or on) the provided datetime. This parameter should use the following format `yyyy-mm-ddThh:MM` (year, month, day, 24-hour and minute) and be expressed in UTC time. | |
| delivery_date_from | No | Restricts the list of returned orders to the ones whose selected delivery slot lands **after** (or on) the provided datetime. This parameter should use the following format `yyyy-mm-ddThh:MM` (year, month, day, 24-hour and minute) and be expressed in UTC time. When this filter is applied, orders that do not have a selected delivery slot (shipped by transporter, for instance) will **not** be returned. Also, note that a delivery slot is said to land after a given datetime if its `slot_start` value is later than that datetime. |