> For the complete documentation index, see [llms.txt](https://docs.hos.accessacloud.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hos.accessacloud.com/epos-api-reference/access-epos-orders-api/api-reference/menu-management.md).

# Menu Management

## Retrieve available menus for a site

> Returns list of configured menus for site and channel. Use menuId from response to call MenuDetails.\
> \
> \*\*Menu Types:\*\*\
> \- Time-based (breakfast, lunch, dinner)\
> \- Channel-specific (dine-in, delivery)\
> \- Seasonal\
> \- Special events\
> \
> \*\*Includes scheduling and price level information.\*\*

```json
{"openapi":"3.0.1","info":{"title":"EPOS Orders API","version":"v1"},"servers":[{"url":"/Access.Epos.Orders.API"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"JWT Bearer token. Obtain from /Token endpoint.","name":"Authorization","in":"header"}},"schemas":{"Menu":{"type":"object","properties":{"menuId":{"type":"integer","format":"int32"},"site":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"displayName":{"type":"string","nullable":true},"imageUrl":{"type":"string","nullable":true},"priceLevelNo":{"type":"integer","format":"int32"},"priceLevelDescription":{"type":"string","nullable":true},"areaNo":{"type":"integer","format":"int32"},"areaDescription":{"type":"string","nullable":true},"scheduling":{"type":"integer","format":"int32"},"timetable":{"$ref":"#/components/schemas/TimetableItem"},"useCondimentListsWeb":{"type":"boolean"}},"additionalProperties":false},"TimetableItem":{"type":"object","properties":{"timetableId":{"type":"integer","format":"int32","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false},"ProblemDetails":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{}}}},"paths":{"/api/Menu/Menus":{"get":{"tags":["Menu Management"],"summary":"Retrieve available menus for a site","description":"Returns list of configured menus for site and channel. Use menuId from response to call MenuDetails.\n\n**Menu Types:**\n- Time-based (breakfast, lunch, dinner)\n- Channel-specific (dine-in, delivery)\n- Seasonal\n- Special events\n\n**Includes scheduling and price level information.**","parameters":[{"name":"companyCode","in":"query","required":true,"schema":{"type":"string"}},{"name":"site","in":"query","required":true,"description":"Site identifier (same as location in other endpoints)","schema":{"type":"string"}},{"name":"channelId","in":"query","required":true,"description":"Sales channel identifier","schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"Menu list retrieved","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Menu"}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}},"401":{"description":"Unauthorised"},"404":{"description":"Not Found"}}}}}}
```

## Retrieve complete menu structure

> Returns complete menu with categories, items, pricing, condiments, allergens, and nutritional information.\
> \
> \*\*Structure:\*\*\
> 1\. \*\*Menu Hierarchy\*\*: Nested categories (unlimited depth)\
> 2\. \*\*PLU Details\*\*: All items with prices, modifiers, allergens\
> 3\. \*\*Condiment Lists\*\*: Customisation options with selection rules\
> \
> \*\*Cache this data locally\*\* to reduce API calls and improve performance.\
> \
> \*\*Price Level\*\*: Set for time-based or regional pricing (0=standard).

```json
{"openapi":"3.0.1","info":{"title":"EPOS Orders API","version":"v1"},"servers":[{"url":"/Access.Epos.Orders.API"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"JWT Bearer token. Obtain from /Token endpoint.","name":"Authorization","in":"header"}},"schemas":{"MenuDetails":{"type":"object","properties":{"menu":{"$ref":"#/components/schemas/MenuStructure"},"plus":{"type":"array","items":{"$ref":"#/components/schemas/PluDetails"},"nullable":true},"condiments":{"type":"array","items":{"$ref":"#/components/schemas/CondimentDetails"},"nullable":true}},"additionalProperties":false},"MenuStructure":{"type":"object","properties":{"menuId":{"type":"integer","format":"int32"},"menuLevels":{"type":"array","items":{"$ref":"#/components/schemas/MenuLevel"},"nullable":true},"plus":{"type":"array","items":{"type":"integer","format":"int64"},"nullable":true}},"additionalProperties":false},"MenuLevel":{"type":"object","properties":{"menuLevelNo":{"type":"integer","format":"int64"},"menuLevelName":{"type":"string","nullable":true},"menuLevelSequence":{"type":"integer","format":"int64"},"menuLevels":{"type":"array","items":{"$ref":"#/components/schemas/MenuLevel"},"nullable":true},"plus":{"type":"array","items":{"type":"integer","format":"int64"},"nullable":true}},"additionalProperties":false},"PluDetails":{"type":"object","properties":{"pluNo":{"type":"integer","format":"int64"},"pluName":{"type":"string","nullable":true},"pluReceiptName":{"type":"string","nullable":true},"pluDescription":{"type":"string","nullable":true},"available":{"type":"boolean"},"priceLevels":{"type":"array","items":{"$ref":"#/components/schemas/PluPriceLevels"},"nullable":true}},"additionalProperties":false},"PluPriceLevels":{"type":"object","properties":{"priceLevelNo":{"type":"integer","format":"int64"},"pluPrices":{"type":"array","items":{"$ref":"#/components/schemas/ModifierPrice"},"nullable":true}},"additionalProperties":false},"ModifierPrice":{"type":"object","properties":{"modifierNo":{"type":"integer","format":"int32"},"price":{"type":"number","format":"double"},"condimentPrice":{"type":"number","format":"double"}},"additionalProperties":false},"CondimentDetails":{"type":"object","properties":{"keyboardNo":{"type":"integer","format":"int64"},"description":{"type":"string","nullable":true},"minItems":{"type":"integer","format":"int32"},"maxItems":{"type":"integer","format":"int32"}},"additionalProperties":false}}},"paths":{"/api/Menu/MenuDetails":{"get":{"tags":["Menu Management"],"summary":"Retrieve complete menu structure","description":"Returns complete menu with categories, items, pricing, condiments, allergens, and nutritional information.\n\n**Structure:**\n1. **Menu Hierarchy**: Nested categories (unlimited depth)\n2. **PLU Details**: All items with prices, modifiers, allergens\n3. **Condiment Lists**: Customisation options with selection rules\n\n**Cache this data locally** to reduce API calls and improve performance.\n\n**Price Level**: Set for time-based or regional pricing (0=standard).","parameters":[{"name":"companyCode","in":"query","required":true,"schema":{"type":"string"}},{"name":"site","in":"query","required":true,"schema":{"type":"string"}},{"name":"menuId","in":"query","required":true,"description":"Menu ID from Menus endpoint","schema":{"type":"integer","format":"int32"}},{"name":"channelId","in":"query","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"priceLevel","in":"query","required":false,"description":"Pricing tier (0=standard)","schema":{"type":"integer","format":"int64","default":0}},{"name":"condimentListType","in":"query","required":false,"description":"Condiment list type (0=standard)","schema":{"type":"integer","format":"int32","default":0}}],"responses":{"200":{"description":"Complete menu structure retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuDetails"}}}},"400":{"description":"Bad Request"},"401":{"description":"Unauthorised"},"404":{"description":"Not Found"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hos.accessacloud.com/epos-api-reference/access-epos-orders-api/api-reference/menu-management.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
