🍯
Integrating with honei
  • Getting Started
  • Authorization
  • Testing
  • Reference
    • API Reference
      • 📩Notifications
      • 🍔Importing catalog to honei
      • 🪑Importing tables to honei
      • 🛒Sending orders to POS
      • ✅Close order on POS
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Close order on POS

We can also mark orders as closed to notify customer via SMS.

Once the take-away order is closed from the POS, it should send a request to the honei servers to notify them of this change. honei will then be responsible for notifying the diner via SMS that their order is ready for pickup.

POST {base}/polling/universal/order/status

This request allows us to notify the diner that their order is ready for pickup.

Headers

Name
Type
Description

x-client-id*

String

The unique identifier for the authorized third party.

x-nonce*

String

The unique and random string generated by the third party for the request.

x-token*

String

The Base64-encoded hash of the nonce concatenated with the secret.

venue-api-key*

String

The unique identifier provided by the Honei support team for the specific venue.

Body:

{
    "orderId": "xLKOOPMHND123",
    "status": "closed",
}
PreviousSending orders to POS

Last updated 1 year ago

✅