🪑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
truncate
Boolean
Headers
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
[{
"id": "6728c87c-e493-4c72-80a3-428e2fab42fx",
"name": "Room 1",
"tables": [{
"id": "6728c87c-e493-4c72-80a3-428e2fab32f1",
"name": "T1"
}]
}]Once the import is completed, the third party's server will be notified.
Last updated