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
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

A collection of menu summary items.
Body ()
Root Schema : schema
Type: object
Show Source
  • items
    Array of Menu Summary objects. If there are no menus configured that meet the query parameters, this array will be empty.
Nested Schema : items
Type: array
Array of Menu Summary objects. If there are no menus configured that meet the query parameters, this array will be empty.
Show Source
Nested Schema : MenuSummary
Type: object
Summary details of a menu without its related items.
Show Source
Nested Schema : MenuSummaryProperties
Type: object
Show Source
Nested Schema : OrgLocRvcProperties
Type: object
A collection of properties for orgShortName, locRef and rvcRef
Show Source
Back to Top

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"
    }
  ]
}
Back to Top