🛒Sending orders to POS
By directly integrating with your POS system, you'll be able to receive all the orders made via honei.
{
"event": "send_order",
"status": 200,
"data": {
"orderId": "rcPwMsTPwe",
"total": 11.7,
"subtotal": 10.53,
"taxTotal": 1.17,
"items": [
{
"id": "6728c87c-e493-4c72-80a3-428e2fab49bc",
"name": "Coke",
"price": 1.7,
"quantity": 1,
"comments": "",
"metadata": null,
"modifiers": [
{
"id": "6728c87c-e493-4c72-80a3-428e2fab49bf",
"name": "With ice",
"quantity": 1,
"price": 0.2
},
{
"id": "6728c87c-e493-4c72-80a3-428e2fab49bf",
"name": "With lemon",
"quantity": 1,
"price": 0
}
]
},
{
id: "test-combo-id",
name: "Test Combo",
price: 10,
quantity: 1,
comments: "",
items: [
{
id: "combo-item-1",
name: "Artículo 1",
price: 0,
quantity: 1,
comments: "",
modifiers: [
],
metadata: {
itemKey: "itemValue",
comboItemKey: "comboItemValue",
comboCategoryId: "6720a891197fdc865490aea0",
},
},
{
id: "combo-item-3",
name: "Artículo 3",
price: 0,
quantity: 1,
comments: "",
modifiers: [
],
metadata: {
itemKey: "itemValue3",
comboItemKey: "comboItemValue3",
comboCategoryId: "6720a891197fdc865490aea3",
},
},
],
metadata: {
key: "value",
familyId: "6720a891197fdc865490aeb9",
},
}
],
"type": "table_ordering",
"tableInfo": {
"roomId": "6728c87c-e493-4c72-80a3-428e2fab42fx",
"tableId": "6728c87c-e493-4c72-80a3-428e2fab32f1"
},
"customer": {
"name": "John Doe",
"email": "[email protected]",
"phone": "+34 666 666 666"
},
"fees": [{
"id": "1",
"label": "Terrace supplement",
"total": 0.66,
"value": 10,
"type": "percentage"
}],
"discounts": [{
"id": "1",
"code": "5TY8FQ",
"total": 0.66,
"value": 10,
"type": "percentage"
}],
"payments":[{
"method":"honei",
"amount":1.7,
"tip":0
}]
}
}Last updated