list_orders
Retrieve and filter order details by creation date, status, and pagination options using the ShipHero MCP Server for streamlined order management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
created_after | No | Filter by creation date (YYYY-MM-DD) | |
created_before | No | Filter by creation date (YYYY-MM-DD) | |
limit | No | Number of results per page | |
page | No | Page number for pagination | |
status | No | Filter by order status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"created_after": {
"description": "Filter by creation date (YYYY-MM-DD)",
"type": "string"
},
"created_before": {
"description": "Filter by creation date (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Number of results per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"status": {
"description": "Filter by order status",
"type": "string"
}
},
"type": "object"
}