Reservations
This service allows the following types of reservations.
Guaranteed Reservation
Reservation, through a card verification without charge to the customer. If the customer does not show up at the property, it is possible to charge the cost of the first night of stay.
This type of booking can be created via the API:
Reservation (POST /reservations)
By setting the reservationType
parameter with "GUARANTEED_NOSHOW".
Guaranteed reservation with penalty
Reservation, through a card verification without charge to the customer. An automatic charge is made if a guest shows up or not for check-in.
This type of booking can be created via the API:
Reservation (POST /reservations)
By setting the reservationType
parameter with "GUARANTEED_PENALTY".
Refundable prepaid
Reservation with advance payment. It is possible to refund the amount in whole or in part (depending on the terms and conditions defined by the operator) in the event that the reservation is canceled before the start of the stay.
This type of booking can be created via the API:
Reservation (POST /reservations)
By setting the reservationType
parameter with "PREPAID_REFUNDABLE".
Prepaid Non-Refundable
Reservation with advance payment. No refunds are possible.
This type of booking can be created via the API:
Reservation (POST /reservations)
By setting the reservationType
parameter with "PREPAID_NOT_REFUNDABLE".
Bundle
Booking of a bundle containing several services provided by the same structure, for example stay + excursion + restaurant + tourist bus.
This type of booking can be created via the API:
Reservation (POST /reservations)
By setting the reservationType
parameter with "BUNDLE ".