get-orders
Retrieve Shopify orders with customizable filters, sorting options, and pagination to efficiently manage order data in bulk.
Instructions
Get shopify orders with advanced filtering and sorting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Next page cursor | |
first | No | Limit of orders to return | |
query | No | Filter orders using query syntax | |
reverse | No | Reverse sort order | |
sortKey | No | Field to sort by |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"description": "Next page cursor",
"type": "string"
},
"first": {
"description": "Limit of orders to return",
"type": "number"
},
"query": {
"description": "Filter orders using query syntax",
"type": "string"
},
"reverse": {
"description": "Reverse sort order",
"type": "boolean"
},
"sortKey": {
"description": "Field to sort by",
"enum": [
"PROCESSED_AT",
"TOTAL_PRICE",
"ID",
"CREATED_AT",
"UPDATED_AT",
"ORDER_NUMBER"
],
"type": "string"
}
},
"type": "object"
}