List menus
Returns bounded menu summaries including whether each menu is active for POS or online ordering.
/v1/restaurants/{restaurantId}/menusReturns bounded menu summaries including whether each menu is active for POS or online ordering. Organization-boundary tokens also require fiest.organization.read.
Quick request
curl -X GET "https://example.com/v1/restaurants/11111111-1111-4111-8111-111111111111/menus" \ -H "Authorization: Bearer $FIEST_ACCESS_TOKEN"{ "data": { "restaurantId": "11111111-1111-4111-8111-111111111111", "menus": [ { "menuPublicId": "43f64da8-4ec2-4900-b137-1c0927c975d2", "name": "Lunch menu", "activeForPos": false, "onlineOrdering": false, "categoryCount": 2, "itemCount": 8 } ], "truncated": false }}Authorization
fiestOAuth fiest.restaurant.read, fiest.menu.readOAuth 2.1 authorization code with PKCE. Partner clients and redirect URIs must be approved by Fiest before use.
In: header
Scope: fiest.restaurant.read, fiest.menu.read
Path Parameters
A restaurant identifier returned by the authorized restaurant list.
uuidResponse Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
Get order details
Returns one order by the opaque order_id returned by findOrders, including stable UUID or deterministic legacy sold-line IDs, catalog UUIDs where available, selected options,…
Create a draft menu
Creates one empty inactive menu. It does not change the active POS or online-ordering menu.