🍯
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

Importing tables to honei

By facilitating direct table importation, honei enables third-party providers to effortlessly sync their tables, reducing manual work and ensuring a consistent user experience across all touchpoints.

The third party will need to provide honei's support team with a callback URL, which is where you will be notified once the tables import is complete.

POST {base}/polling/universal/tables

This request allows us to import a set of rooms with their corresponding tables.

Query Parameters

Name
Type
Description

truncate

Boolean

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

[{
    "": "6728c87c-e493-4c72-80a3-428e2fab42fx",
    "": "Room 1",
    "": [{
        "": "6728c87c-e493-4c72-80a3-428e2fab32f1",
        "": "T1"
    }]
}]

Once the import is completed, the third party's server will be notified.

PreviousImporting catalog to honeiNextSending orders to POS

Last updated 7 months ago

🪑