Changelog
Changelog
2025-03-12
- Adding support for sending both Stripe payment method id and customer id for payment.
2025-02-26
- Hotel search response may now include
currency_exchange_rates
. This attribute is returned when rates are not returned inUSD
. This attribute provides details that would allow a client to display an estimated amount in USD for a given rate in the hotel’s local currency.
2025-02-18
- Reservations are now created asyncronously. Upon getting a successful response from CreateReservation call,
you will receive a status of
CREATED
. Once the reservation is confirmed at the hotel, a webhook of event typeRESERVATION_CONFIRMED
will be sent to inform on the hotel confirmation number details.
2025-02-13
- Added new webhook event, RESERVATION_MODIFIED.
- Added new webhook field,
event_id
. Signature algorithim also updated. - Added
included_perks
field to Hotel search response.
2025-02-05
- Added split payments capability. This changes the create reservation request body as follows:
payment.credit_card
nowpayment.guest
- introduces
payment.partner
- Added optional
tripadvisor_ids
filter for Hotel search
2025-01-23
- Added
expiration
field to rates. See search for full docs.
2025-01-15
- The create reservation request body schema has been updated.
payment.credit_card.cvv
data type changed from integer to string. - Postman collection updated.
2024-12-20
- Introduces ability to modify dates on a confirmed reservation.
2024-12-13
- Introduces webhooks to handle reservation cancellation and completion. See webhooks overview for more details.
2024-12-06
- Introduces reservation modification endpoint. Supports modification of guest payment instrument.
- Introduces hotel reviews endpoint.
- Adds
ignore_availability
filter to search endpoint.
2024-11-20
- The create reservation request body schema has been updated. You will now need to pass the full rate object returned from a search to book the room. Additionally, create reservation will now expect currency amounts formatted as floats to be consistent with the format returned in a search response.