Skip to main content

Booking and Payment Handling

Preface

This document outlines the process of handling payments on the partner's side. While we offer the option to use the Smily payment gateway, this guide focuses on managing payments directly through the partner's infrastructure.

Quote creation

Before proceeding with booking creation, 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": {
"startAt": "2023-08-04",
"endAt": "2023-08-11",
"adults": 20,
"children": 0,
"rentalId": 428
},
"type": "quotes"
}
}'

Booking creation

Once a successful quote is obtained, initiate a booking request 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": {
"startAt": "2020-09-04T16:00:00.000Z",
"endAt": "2020-09-11T10:00:00.000Z",
"adults": 2,
"children": 1,
"finalPrice": "176.0",
"currency": "EUR",
"rentalId": 1,
"clientFirstName": "Rich",
"clientLastName": "Piana",
"clientEmail": "rich@piana.com",
"clientPhoneNumber": "123123123",
"clientCountryCode": "US",
"channelCommission": "10.0"
},
"type": "bookings"
}
}'
note

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

Tentative Bookings

By default, we create tentative bookings, and if payment is not received within some period, the booking will be automatically canceled. Each booking includes a tentative-expires-at field, indicating the time at which the booking will expire. The duration of this period varies depending on the rental settings:

  • For instantly bookable rentals: 10 minutes (can be extended upon request)
  • For non-instantly bookable rentals: 72 hours
info

By default, we do not include rentals that are not instantly bookable in the API response, but we can include them upon request.

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.

Payment creation

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",
"paidAt": "2020-09-10T05:30:18.321Z",
"kind": "credit-card",
"bookingId": "$BOOKING_ID"
},
"type": "payments"
}
}'
Idempotency Support

The payments endpoint also supports the Idempotency-Key header. To ensure idempotent writes and frictionless integration, it is highly recommended to provide this header. For a given key, every successful response will be cached for 6 hours. This allows you to safely retry write operations.