list_orders
Retrieve orders from Shopify filtered by status, payment, and fulfillment. Supports date ranges and pagination for managing order data.
Instructions
List orders in the store. By default returns open orders. Use status to filter by fulfillment status, and financial_status for payment status. Results are paginated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of orders to return (1–250). Default: 10. | |
| status | No | Order status filter. Default: any. | any |
| financial_status | No | Filter by payment status. | |
| fulfillment_status | No | Filter by fulfillment status. | |
| created_at_min | No | Minimum creation date (ISO 8601). E.g. '2024-01-01T00:00:00Z'. | |
| created_at_max | No | Maximum creation date (ISO 8601). | |
| since_id | No | Return orders after this ID (for forward pagination). | |
| page_info | No | Cursor for pagination. |