September, 2012
.Net code for hotel search request to Travelport

public void SearchHotelAvailability(Uri uri, string userName, string password, string targetBranch) {             HotelSearchAvailabilityReq request = new HotelSearchAvailabilityReq();             request.BillingPointOfSaleInfo = new BillingPointOfSaleInfo();             request.BillingPointOfSaleInfo.OriginApplication = “UAPI”;             HotelLocation location = new HotelLocation();             location.Location = “PDX”; //”YVR”, BOB, LOX, DEN             location.LocationType = typeHotelLocation.City;             request.HotelLocation = location;             HotelSearchModifiers searchModifiers = new HotelSearchModifiers();             […]

Read More
Posted on 13th September 2012No Comments