Get a menu

Returns a Menu object containing information about a menu configured for a restaurant. For example, a restaurant might have drinks, dinner, and dessert menus.

Securityoauth2
Request
path Parameters
guid
required
string

The Toast POS GUID of the menu.

header Parameters
Toast-Restaurant-External-ID
required
string

The Toast POS GUID of the restaurant that the configuration applies to.

Responses
200

Returns a Menu object.

get/menus/{guid}
Request samples
curl -i -X GET \
  'https://toast-api-server/config/v2/menus/{guid}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Toast-Restaurant-External-ID: string'
Response samples
application/json
{
  • "guid": "string",
  • "entityType": "string",
  • "externalId": "string",
  • "name": "string",
  • "orderableOnline": "YES",
  • "visibility": "ALL",
  • "groups": [
    ],
  • "images": [
    ],
  • "unitOfMeasure": "NONE"
}