v1
latestOpenAPI 3.1.02026-07-1712816.6 KBorders
Get all orders
Returns a list of all orders in the system
get/orders
Query parameters
userIdstring
Filter orders by userId
statusstring
Filter orders by status (comma-separated for multiple, e.g. pending,ready)
laststring
Filter orders created in the last X minutes/hours (e.g. 60m, 2h)
Response
List of orders
Example response
[
{
"items": [
{
"pizzaId": "pizza-1",
"quantity": 1,
"extraToppingIds": [
"topping-1",
"topping-2"
]
}
]
}
]