Menu Endpoints
GET /menu
Retrieve a list of all menu items.
Response 200 OK
GET /menu/{id}
Retrieve a specific menu item by its ID.
Response 200 OK
Response 404 Not Found
Response 500 Internal Server Error
POST /menu
Create a new menu item.
Request Body
- name: (String) The name of the menu item. This field is required.
- restaurantId: (Number) The id of the restaurant menu item. This field is required.
Example