Get a menu group

Returns a MenuGroup object containing information about a section within a menu.

Securityoauth2
Request
path Parameters
guid
required
string

The Toast POS GUID of the menu group.

header Parameters
Toast-Restaurant-External-ID
required
string

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

Responses
200

Returns a MenuGroup object.

get/menuGroups/{guid}
Request samples
curl -i -X GET \
  'https://toast-api-server/config/v2/menuGroups/{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",
  • "menu": {
    },
  • "orderableOnline": "YES",
  • "visibility": "ALL",
  • "parent": {
    },
  • "items": [
    ],
  • "subgroups": [
    ],
  • "optionGroups": [
    ],
  • "inheritOptionGroups": true,
  • "images": [
    ],
  • "unitOfMeasure": "NONE",
  • "inheritUnitOfMeasure": true
}