openapi
/- List all order items with menu item details
List all orders
Create order
Retrieve an order
Partially update an order
Delete an order
Order notification webhook
List all order items with...
Returns an array of order items for a specific order. Use the filter parameter to filter by order ID.
Security
OAuth2(Required scopes: orders:read)
- Mock serverhttps://cafe.redocly.com/_mock/openapi/cafe/order-items
- Live server.https://api.cafe.redocly.com/order-items
curl -i -X GET \
'https://cafe.redocly.com/_mock/openapi/cafe/order-items?filter=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
- beverage
- dessert
[ { "menuItem": { … }, "quantity": 1, "discount": 0, "comment": "string" } ]