Webhooks
Webhooks for receiving real-time notifications about reservation events, including the creation, update, or cancellation of a booking in the restaurant.
ā¹ļø OctoTable provides webhooks to automatically notify your system when certain events related to reservations occur.
To start receiving notifications, you need to register an HTTP endpoint (URL) that OctoTable will call with a POST
request whenever the selected event takes place.
āļø Use the base resource URL for the following examples, or see the complete collection
https://api.octorate.com/octotable-pms/api/v2
ā How to register a webhook
To set up a webhook, send a POST
request to the appropriate endpoint, specifying:
the event you want to subscribe to,
and the URL that should receive the notification.
š Available Events
OctoTable currently supports the following reservation-related events:
RESERVATION_CREATED Triggered whenever a new reservation is created.
RESERVATION_UPDATED Triggered when an existing reservation is modified.
RESERVATION_DELETED Triggered when a reservation is deleted.
š Webhook notifications will be sent from OctoTable to the URL you provide.
For API calls and examples, use the following base resource URL:
https://api.octorate.com/octotable-pms/api/v2
Last updated