demo · Commerce · JSON · API for agents
Search orders in a given timeframe. Returns order number, shipping status and location
{
"name": "get_order_status",
"kind": "read",
"impl": "declarative",
"description": "Search orders in a given timeframe. Returns order number, shipping status and location",
"inputSchema": {
"type": "object",
"properties": {
"timeframe": {
"type": "string",
"enum": [
"today",
"yesterday",
"last_7_days",
"last_30_days",
"last_6_months"
]
}
},
"required": [
"timeframe"
]
}
}