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