Get Housing Details by Event Similar to the Get Housing Availability, this call allows filtering by a hotelID if known. The third party application will supply a blockID or a combination of an eventID and hotelID. The data returned is the hotel level details, as well as details at the block level (single block when blockID specified, and one or more blocks when event/hotel specified.)

Note

A blockID represents a single room type for a single attendee type for a single hotel. Due to the high granularity of this filter, there are not many common applications for it.

GetHousingDetailsRQ - By Block

<?xml version="1.0" encoding="UTF-8"?>
<GetHousingDetailsRQ xmlns="http://www.Cvent Passkey.com/apiSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <Security>
      <Login>
         <UserName>reglinkapi</UserName>
         <Password>passkey1</Password>
      </Login>
      <PartnerID>136260</PartnerID>
      <Token> </Token>
   </Security>
   <Message>
      <GUID/>
      <Version>4.00.02</Version>
      <Mode>S</Mode>
      <OP>GetHousingDetails</OP>
      <Service>GetHousingDetails</Service>
      <Locale>EN_US</Locale>
   </Message>
   <Data>
      <GetHousingDetails>
         <BlockID>104636892</BlockID>
      </GetHousingDetails>
   </Data>
</GetHousingDetailsRQ>

GetHousingDetailsRS - By Block

<?xml version="1.0" encoding="ISO-8859-1"?>
<PasskeyRS xmlns="http://www.passkey.com/apiSchema">
   <Message GUID="1638e6bf162:-576020">
      <Status ID="2">PROCESSED</Status>
   </Message>
   <Data>
      <HousingDetails>
         <Hotel ID="136259">
            <Info>
               <Name>RegLink Training Hotel</Name>
               <Division/>
               <Description>
                  <p>Event Hotel Description</p>
               </Description>
               <Address1>221 Crescent Street</Address1>
               <Address2/>
               <City>Waltham</City>
               <State>MA</State>
               <CountryCode>UNITED STATES</CountryCode>
               <PostalCode>12345</PostalCode>
               <FaxNumber1>891</FaxNumber1>
               <FaxNumber2/>
               <PhoneNumber1>781</PhoneNumber1>
               <PhoneNumber2/>
               <TickerText/>
               <TollFreeNumber/>
               <URL/>
               <Email>noreply@lanyon.com</Email>
               <Amenites/>
               <HotelRewardsProgram>
                  <RewardProgram>
                     <RewardName>Hilton HHonors</RewardName>
                     <RewardDescription/>
                  </RewardProgram>
                  <ShowAccessible>false</ShowAccessible>
               </Info>
               <AcceptedCards>
                  <AcceptedCard Name="VISA" ShortName="VI" Type="100"/>
                  <AcceptedCard Name="MasterCard" ShortName="MC" Type="101"/>
                  <AcceptedCard Name="American Express" ShortName="AM" Type="102"/>
                  <AcceptedCard Name="Discover" ShortName="DS" Type="103"/>
                  <AcceptedCard Name="Diners Club" ShortName="DN" Type="104"/>
                  <AcceptedCard Name="JCB" ShortName="JC" Type="105"/>
               </AcceptedCards>
            </Hotel>
            <Rooms>
               <Room ID="3">
                  <Name>Deluxe King</Name>
                  <Description>
                     <p>King size bed</p>
                  </Description>
                  <ShowSmokingPreference>false</ShowSmokingPreference>
               </Room>
            </Rooms>
            <Rooms>
               <Room ID="1">
                  <Name>King</Name>
                  <Description>King size bed</Description>
                  <ShowSmokingPreference>false</ShowSmokingPreference>
               </Room>
            </Rooms>
            <Rooms>
               <Room ID="2">
                  <Name>Queen</Name>
                  <Description>
                     <p>Queen size bed</p>
                  </Description>
                  <ShowSmokingPreference>false</ShowSmokingPreference>
               </Room>
            </Rooms>
         </HousingDetails>
      </Data>
   </PasskeyRS>

GetHousingDetailsRQ - By Event

<?xml version="1.0" encoding="UTF-8"?>
<GetHousingDetailsRQ xmlns="http://www.Cvent Passkey.com/apiSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <Security>
      <Login>
         <UserName>reglinkapi</UserName>
         <Password>passkey1</Password>
      </Login>
      <PartnerID>136260</PartnerID>
      <Token> </Token>
   </Security>
   <Message>
      <GUID/>
      <Version>4.00.02</Version>
      <Mode>S</Mode>
      <OP>GetHousingDetails</OP>
      <Service>GetHousingDetails</Service>
      <Locale>EN_US</Locale>
   </Message>
   <Data>
      <GetHousingDetails>
         <HotelID>136259</HotelID>
         <EventID>151592</EventID>
      </GetHousingDetails>
   </Data>
</GetHousingDetailsRQ>

GetHousingDetailsRS - By Event

<?xml version="1.0" encoding="ISO-8859-1"?>
<PasskeyRS xmlns="http://www.passkey.com/apiSchema">
   <Message GUID="164ae46a041:-6ea620">
      <Status ID="2">PROCESSED</Status>
   </Message>
   <Data>
      <HousingDetails>
         <Hotel ID="136259">
            <Info>
               <Name>RegLink Training Hotel</Name>
               <Division/>
               <Description>
                  <p>Event Hotel Description</p>
               </Description>
               <Address1/>
               <Address2/>
               <City/>
               <State/>
               <CountryCode/>
               <PostalCode/>
               <FaxNumber1/>
               <FaxNumber2/>
               <PhoneNumber1/>
               <PhoneNumber2/>
               <TickerText/>
               <TollFreeNumber/>
               <URL/>
               <Email>noreply@lanyon.com</Email>
               <Amenites/>
               <HotelRewardsProgram/>
               <ShowAccessible>false</ShowAccessible>
            </Info>
            <AcceptedCards/>
         </Hotel>
         <Rooms>
            <Room ID="2">
               <Name>Queen</Name>
               <Description>
                  <p>Queen size bed</p>
               </Description>
               <ShowSmokingPreference>false</ShowSmokingPreference>
            </Room>
         </Rooms>
      </HousingDetails>
   </Data>
</PasskeyRS>
Last updated on