v1
latestOpenAPI 3.0.02026-07-1398671635.1 KBRestaurants
publicly-accessible
Get all menu items
Get all menu items on the restaurant's menu
get/restaurants/{tenant}/{restaurantId}/catalogue/items
Path parameters
tenantstring required
Request tenant.
restaurantIdstring required
The restaurant Id.
Query parameters
limitinteger required
The maximum number of menu items to fetch.
afterstring
Value representing a cursor - position to use when retrieving the next page of data. If provided, the value of this parameter must be URL encoded.
Response
Request succeeded.
Example response
{
"items": [
{
"id": "65143901",
"type": "menuItem",
"name": "Flat Bread and Dips (Pick any 2 Dips)",
"requireOtherProducts": false,
"description": "",
"labels": []
},
{
"id": "8547130",
"type": "menuItem",
"name": "Margherita",
"requireOtherProducts": true,
"description": "",
"labels": []
}
],
"paging": {
"cursors": {
"after": "NDMyNzQyODI3OTQw"
}
}
}