Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Bookiply Holidu Channel API provides interfaces to create and manage traveler bookings on your platform. This page will walk you through the endpoints and the key information needed to interact with them.

For a detailed overview of each of them, please refer to API Specification .

Action

Endpoints

Pre-Booking Price Check

Status
colourYellow
titlePOST
/v1/bookings/price-check

Booking Creation

Status
colourYellow
titlePOST
/v1/bookings

Booking Cancellation

Status
colourYellow
titlePUT
/v1/bookings/{bookingId}/cancel

Booking Updates Polling

Status
colourBlue
titleGET
/v1/updates/bookings

Fetch Booking Details

Status
colourBlue
titleGET
/v1/bookings/{bookingId}

Pre-Booking Price Check

Whenever a customer enters a booking funnel on your website, you should fetch the detailed price breakdown together with all required and optional costs from the Price Check endpoint. That way you:

  • Confirm the property is still available for the requested dates.

  • Ensure that the price you show to the customer is precisely mirroring Bookiply’s Holidu’s Price, including adjustments for additional guests, taxes, children costs, and amenity costs.

  • Reduce the probability of booking rejections.

...

Note: The guest details require the count of adults, children, babies and pets. For every child and baby, there should be a corresponding age in childrenAges array.

Age Guest rules:

  • Guests are categorised based on the following conditions:

    • Babies: less than 2 years old (ages considered as baby are 0 and 1).

    • Children: greater than or equal to 2 years and less than 18 years (ages considered as children are 2 to 17).

    • Adults: greater than or equal to 18 years of age.

  • There is no price differentiation between adults and children, however age information is useful for the host.

  • Babies are always free.

...

After the customer successfully completes the booking on your page, you need to create the booking in Bookiply’s Holidu’s system.

During the Booking Creation call, Bookiply Holidu will validate the booking request and synchronously respond by accepting the booking or specifying the reason for the rejection. Only after you get a successful response from the Booking Creation endpoint can you consider the booking completed and accepted by BookiplyHolidu.

Booking Cancellation

You can use the cancellation endpoint to request the cancellation of a booking, initiated by the traveler. The system will verify if the cancellation is possible and synchronously accept or reject the booking.

...

Post booking, the booking can be modified in Bookiply’s Holidu’s systems based on the traveler’s or homeowner’s request. Partners can stay updated about the booking changes and the latest state of the booking by regularly polling for the changes that happened to their bookings.

...