Skip to main content

Understanding Request to Book

Preface

A "Request to Book" is similar to a regular booking, but with one important difference: the Property Manager (PM) must confirm the booking before the guest pays.

The process of creating a request to book is quite similar to making a regular booking. You'll use the same API for both. However, if the rental's instantly_bookable attribute is set to false, it will automatically become a request to book.

tip

By default, we only show rentals that can be booked instantly. However, this can be changed upon request.

Quote creation

To start the booking request creation process, it's necessary to confirm rental price and availability by generating a quote.

TOKEN="YOUR_TOKEN"
API_URL="API_URL"

curl -X POST \
"$API_URL/api/ota/v1/quotes" \
-H "User-Agent: Api client" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer $TOKEN" \
-d '{
"data": {
"attributes": {
"start-at": "2023-08-04",
"end-at": "2023-08-11",
"adults": 20,
"children": 0,
"rental-id": 428
},
"type": "quotes"
}
}'

Booking creation

Once we have a successful quote, it's time to initiate a "Request to Book" by providing client details, rental information, and pricing.

note

Ensure that the provided price matches or higher than final-price from the quote.

TOKEN="YOUR_TOKEN"
API_URL="API_URL"

curl -X POST \
'$API_URL/api/ota/v1/bookings' \
-H 'User-Agent: Api client' \
-H 'Accept: application/vnd.api+json' \
-H 'Content-Type: application/vnd.api+json' \
-H 'Authorization: Bearer $TOKEN' \
-H 'Idempotency-Key: UNIQUE_UUID' \
-d '{
"data": {
"attributes": {
"start-at": "2020-09-04T16:00:00.000Z",
"end-at": "2020-09-11T10:00:00.000Z",
"adults": 2,
"children": 1,
"final-price": "176.0",
"currency": "EUR",
"rental-id": 1,
"client-first-name": "Rich",
"client-last-name": "Piana",
"client-email": "rich@piana.com",
"client-phone-number": "123123123",
"client-country-code": "US",
"channel-commission": "10.0"
},
"type": "bookings"
}
}'
note

Please ensure you correctly set the partner's commission in the channel-commission field of the payload.

tip

Make sure to check that the booking attributes show "booked: false" and "request_to_book: true".

We strongly recommend setting the Idempotency-Key header to prevent duplicate creations. Generate a UUID for each order and use it as the Idempotency-Key.

For example, if you attempt to create a booking but encounter a network connection issue or another error that prevents you from receiving a response, you can safely retry your request. This is possible because, for a specific key, each successful response will be cached for a 6 hours.

Wait for Property Manager Confirmation

Now, we wait for the Property Manager (PM) to confirm the booking. We can do this by fetching the booking details using the GET /api/ota/v1/bookings/{id}. The PM will have up to 3 days to confirm the booking. Once confirmed, the booking status will change to "booked."

note

If your platform allows property managers to confirm bookings, you still need to check the status from our side. However, if the confirmation comes from your side, you can simply create a payment to notify us that the booking is confirmed.

TOKEN="YOUR_TOKEN"
API_URL="API_URL"
BOOKING_ID="BOOKING_ID"

curl -X GET \
"$API_URL/api/ota/v1/bookings/$BOOKING_ID" \
-H "User-Agent: API Client" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer $TOKEN"

Payment creation

After the booking is confirmed, it's time to create a payment. The partner (Property Manager) will notify the guest about the confirmed booking and request payment. Once the guest makes the payment, we need to be notified. If the payment is successful, we'll receive a notification via the POST /api/ota/v1/payments. If the guest doesn't make the payment, we'll need to cancel the booking using the PATCH /api/ota/v1/bookings/{id}/cancel.

Following these steps ensures a smooth process from creating a quote to confirming the booking and handling payments. If you have any questions or need further assistance, feel free to reach out. Happy booking!

Once payment for the booking is processed, notify us to prevent booking cancellation.

TOKEN="YOUR_TOKEN"
API_URL="API_URL"
IDEMPOTENCY_UUID="IDEMPOTENCY_UUID"
BOOKING_ID=1111

curl -X POST "$API_URL/api/ota/v1/payments" \
-H "User-Agent: Api client" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer $TOKEN" \
-H "Idempotency-Key: $IDEMPOTENCY_UUID" \
-d '{
"data": {
"attributes": {
"amount": "100.0",
"currency": "EUR",
"paid-at": "2020-09-10T05:30:18.321Z",
"kind": "credit-card",
"booking-id": "$BOOKING_ID"
},
"type": "payments"
}
}'
note

Payments endpoint also supports Idempotency-Key header. To ensure idempotent writes and frictionless integration, it is highly recommended to provide Idempotency-Key header. For a given key, every success response will be cached for 6 hours. Thanks to that, you can safely retry write operation.