list_orders
Retrieve and filter ShipBob orders by status and date range, with pagination support for managing large datasets efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date for filtering (YYYY-MM-DD) | |
limit | No | Number of orders per page | |
page | No | Page number for pagination | |
startDate | No | Start date for filtering (YYYY-MM-DD) | |
status | No | Filter by order status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date for filtering (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Number of orders per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"startDate": {
"description": "Start date for filtering (YYYY-MM-DD)",
"type": "string"
},
"status": {
"description": "Filter by order status",
"type": "string"
}
},
"type": "object"
}