Fiest Developers

List menus

Returns bounded menu summaries including whether each menu is active for POS or online ordering.

GET/v1/restaurants/{restaurantId}/menus

Returns 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.read
AuthorizationBearer <token>

OAuth 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

restaurantId*string

A restaurant identifier returned by the authorized restaurant list.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json