Webhooks Overview
Selfbook provides webhooks for certain events related to our API operations. You can choose to subscribe to one or more of these events based on your integration needs.
Supported events
-
RESERVATION_CANCELED: Sent when a reservation is canceled through our cancelation endpoint.
-
RESERVATION_COMPLETED: Sent when a reservation is completed. This is sent on the date of checkout.
-
RESERVATION_CONFIRMED: Sent when a reservation is confirmed with a hotel confirmation number.
-
RESERVATION_MODIFIED: Sent when a reservation is modified through our modification endpoint.
Set up webhooks.
Contact us to get going. We will work with you setup delivery of webhooks to your endpoints. This includes providing you with a signing secret for verification.
Webhook Structure
Selfbook webhooks are JSON formatted messages sent via HTTP POST to a server you control. Each webhook will have the following fields. Please note that as more event types are added, these instructions are subject to change.
Property | Description |
---|---|
event_id | Unique identifier for the event. |
event_time | Timestamp of the event. ISO 8601 format. |
event_type | Type of event. See Supported events. |
reservation_id | Id of the related reservation. |
retry_count | If delivery has failed in the past, this value would be incremented for each attempt. |
signature | HMAC signature used to verify webhook |
version | 1 |
For example, a RESERVATION_CANCELED webhook might look like this
Security
To verify the webhooks received are from us, we include a HMAC signature in the payload.
To peform a validation, follow these steps:
-
Concatenate the values of the following fields in this order. Separate values with a colon (:).
event_type
event_id
event_time
reservation_id
- your api username
- your HMAC key
-
Calculate the SHA256 HMAC signature using the key and the concatened values as described in step 1.
-
Base64-encode the final result.
-
Compare the value you calculated with the signature value you received in the webhook body. If it matches, you know the webhook was sent by Selfbook.
Here’s an example function in Ruby that would calculate the signature.
- data = the fields you concatened together with a colon (:) (see step 1 above). In the example below, it’s already done and stored in ‘data’ variable.
- key = the HMAC key you are provided with.
Handling webhooks
Selfbook expects you to acknowledge receiving the webhook by returning an HTTP 200 immediately upon receipt. We suggest you store any webhooks you receive and respond immediately with HTTP 200 before doing any further processing with webhook data. Selfbook allows 2000 ms (2 seconds) for your server to respond back with HTTP 200 before considering the attempt a timeout.
Selfbook will re-try sending webhooks if the initial attempt fails for up to 2 days after the initial delivery attempt.
Example webhooks
RESERVATION_CANCELED
RESERVATION_COMPLETED
RESERVATION_CONFIRMED
Triggered upon successful confirmation of a reservation. Includes field confirmation
which will have the hotel_confirmation_number
.
RESERVATION_MODIFIED
Triggered upon successful modification of a reservation. Includes field modifications
which indicates the type of modification.
modifications
can be: reservation_dates
or guest_payment_token
.