Orders
Working with orders in Menuflow
When opening a table the Menuflow platform automatically creates a new order_id. The order_id can be used to retrieve all of the order details as well as add and remove items and item modifiers.
The following calls allow you to manage orders.
Get Order
Call to retrieve the full details of an order
Get Order
GET
https://api.menuflow.dev/go/order/{order_id}
Path Parameters
order_id*
integer
order_id of the order to retrieve
Add Item
Call to add an item to an existing order
Add Item
POST
https://api.menuflow.dev/go/order/{order_id}
The following is a sample JSON payload to add two items of various quantities and modifiers.
Path Parameters
order_id*
integer
order_id of the order to a
Remove Item
Call to delete/remove an item from an existing order
Delete Item
DELETE
https://api.menuflow.dev/go/order/{order_item_id}/item
Path Parameters
order_item_id*
integer
order_item_id to delete from order
Delete Order
Call to delete an order, this is only possible if the order is not paid.
Delete Order
DELETE
https://api.menuflow.dev/go/order/{order_id}
Path Parameters
order_id*
integer
order_id to delete
Last updated