Retrieve a list of dishes
Use this method to retrieve a list of dishes and the dish details.
The client app will display the name
, description
, and price
and will use the category
to determine where to display the dish in the menu. The server will check the dish’s ingredient_id
to ensure essential ingredients are in stock (if not in stock, the dish will be disabled in the client app).
The kitchen display system will use the station
, preparation_time
, and ingredients
array when prioritizing and prepping the dish.
Query Parameters
Determine which property to sort the list by. Used with the order
parameter.
Used with the sort
parameter. Set to asc
for ascending order or desc
for descending order.
Restrict which properties are returned in the response.
Filter your response to include only items that have properties that equal the specified value.
"created_at.gt~2024-05-07|price.lte~19.99"
Limit the number of objects in the response.
x <= 30
Offsets the start of the list by the set value. Defaults to 0.
0
Response
Request successful
The response is of type object
.