Get a summary of all available menus
get
/api/v1/menus/summary
{basePath}/menus/summary?orgShortName=tfoinc&locRef= fdmnh144& rvcRef=42
API returns a list of menu summaries for a location or revenue center in an organization.Request
Supported Media Types
- application/json
Query Parameters
-
LocRef: string
The location identifier.
-
OrgShortName(required): string
The organization identifier. Will be forced to lower-case.
-
RvcRef: string
The revenue center identifier.
Response
Supported Media Types
- application/json
200 Response
A collection of menu summary items.
Nested Schema : MenuSummary
Type:
object
Summary details of a menu without its related items.
Show Source
Nested Schema : MenuSummaryProperties
Type:
Show Source
object
-
description:
string
A description of the menu
- menuId(required): string
-
name(required):
string
Menu nameExample:
1
-
OrgLocRvcProperties:
object OrgLocRvcProperties
A collection of properties for orgShortName, locRef and rvcRef
Nested Schema : OrgLocRvcProperties
Type:
object
A collection of properties for orgShortName, locRef and rvcRef
Show Source
-
locRef(required):
string
Location identifierExample:
store66
-
orgShortName(required):
string
Organization identifierExample:
mymeal
-
rvcRef(required):
integer
Revenue Center identifierExample:
2
Examples
Example Request Body
Not applicable for this endpoint.
Example Response Body
The following example shows the contents of the response body in JSON format:
{
"items": [
{
"orgShortName": "mymeal",
"locRef": "store66",
"rvcRef": 2,
"menuId": "myb:store2:dining",
"name": "1"
}
]
}