Vrbo Availability Calendar

The Availability Calendar API provides daily availability for a specified date range for Vrbo lodging properties.

For details on retrieving property IDs, refer to Retrieve Property Static Data. For more information about this service, see the Availability Calendar API documentation.

1. Build the request object using the classes defined in the SDK

GetLodgingAvailabilityCalendarsOperationParams availabilityCalendarsOperationParams =
        GetLodgingAvailabilityCalendarsOperationParams.builder()
            .partnerTransactionId("PARTNER TRANSACTION ID")
            // Vrbo Property IDs to search for
            .propertyIds(new HashSet<>(Arrays.asList("87704892","36238803")))
            .build();

GetLodgingAvailabilityCalendarsOperation availCalendarsOperation = 
            new GetLodgingAvailabilityCalendarsOperation(availabilityCalendarsOperationParams);

2. Make the API call using service client.

Response<AvailabilityCalendarResponse> availCalendarsResponse =
        client.execute(availCalendarsOperation);
Did you find this page helpful?
How can we improve this content?
Thank you for helping us improve!