Skip to main content
GET
Get Menu List
This endpoint returns a comprehensive list of all menus associated with a store, including detailed menu configuration, operating hours, and statistical information about menu contents.
The menu list provides essential information for menu management, including item counts, category statistics, and operating schedules, making it ideal for administrative dashboards and operational planning.

Path Parameters

string
required
The unique identifier of the store to retrieve menus for

Query Parameters

string
Filter menus by status: “active”, “inactive”, “all”
string
Sort criteria: “name”, “created_date”, “categories”, “items”
string
Sort direction: “asc” or “desc”
string
Filter by menu name or “all” for all menus

Response

The response is an array of menu objects with comprehensive information:
string
Unique identifier for the menu
string
Display name of the menu
string
External system menu identifier (if applicable)
string
Store identifier this menu belongs to
boolean
Whether this is the default menu for the store
string
User ID who created the menu
string
User ID who last updated the menu
string
Creator’s user identifier
string
Last updater’s user identifier
string
Timestamp when the menu was created
string
Timestamp when the menu was last updated
array
Array of operating hours for the menu
string
Total number of items in this menu
string
Number of unique categories in this menu
string
Number of modifier items in this menu

Response Example

Time Format: All times are displayed in 24-hour format (HH:MM) for consistency across different regions and to avoid AM/PM confusion.
Filtering Options: Use the query parameters to efficiently find specific menus, especially in stores with many menu configurations.

Use Cases

Administrative Dashboard
  • Display all store menus for management overview
  • Show menu statistics for operational planning
  • Compare menu configurations across different stores
  • Monitor menu performance and utilization
Operational Planning
  • Review operating hours for scheduling staff
  • Analyze menu complexity for training purposes
  • Plan inventory based on menu item counts
  • Coordinate marketing efforts with menu availability
System Integration
  • Sync menu data with external systems
  • Update point-of-sale systems with current menus
  • Integrate with delivery platform APIs
  • Coordinate with inventory management systems
Business Analysis
  • Compare menu performance across different configurations
  • Analyze the relationship between menu complexity and sales
  • Track menu evolution over time
  • Support decision-making for menu optimization

Filtering and Sorting

Status Filtering
  • active: Only show currently active menus
  • inactive: Show deactivated menus for review
  • all: Display all menus regardless of status
Sorting Options
  • name: Alphabetical sorting by menu name
  • created_date: Chronological sorting by creation date
  • categories: Sort by number of unique categories
  • items: Sort by total item count
Name Filtering
  • Specific menu name for targeted retrieval
  • “all” parameter to retrieve all menus
  • Partial name matching for flexible searches
Direction Control
  • asc: Ascending order (A-Z, oldest first, smallest first)
  • desc: Descending order (Z-A, newest first, largest first)

Data Analysis

Error Handling

Store Not Found
Invalid Query Parameters
No Menus Found
Access Denied

Integration Considerations

API Response Handling
  • Handle array responses appropriately
  • Process nested menu_hours data correctly
  • Account for null values in optional fields
  • Implement proper error handling for edge cases
Data Caching Strategies
  • Cache menu list data for frequently accessed stores
  • Implement cache invalidation on menu updates
  • Consider real-time updates for operational systems
  • Balance performance with data freshness requirements
External System Synchronization
  • Use external_menu_id for third-party integration
  • Maintain mapping between internal and external IDs
  • Handle synchronization conflicts gracefully
  • Implement proper error recovery mechanisms
Performance Considerations
  • Limit request frequency for large stores
  • Implement pagination for stores with many menus
  • Use appropriate filtering to reduce response size
  • Monitor API performance and optimize as needed