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",
}

Last updated