Open jadchahine opened 7 years ago
Also how can I get the amount per night? should I calculate it by dividing the max amount on the number of nights?
Hi JadChahine,
The HotelSearchAvailabilityRsp will be returning the approximate room rate per day starting from. If you want the total based with hotel rules you may need to send the following HotelDetails request.
`xml
<soapenv:Body>
<hot:HotelDetailsReq xmlns:com="http://www.travelport.com/schema/common_v34_0" xmlns:hot="http://www.travelport.com/schema/hotel_v34_0" ReturnMediaLinks="true" TargetBranch="PXXXXXX">
<com:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<hot:HotelProperty HotelChain="LQ" HotelCode="94229" Name="LA QUINTA INN STE DEN AP DIA"/>
<hot:HotelDetailsModifiers NumberOfAdults="1" RateRuleDetail="Complete">
<com:PermittedProviders>
<com:Provider Code="1G"/>
</com:PermittedProviders>
<hot:HotelStay>
<hot:CheckinDate>2016-12-10</hot:CheckinDate>
<hot:CheckoutDate>2016-12-11</hot:CheckoutDate>
</hot:HotelStay>
</hot:HotelDetailsModifiers>
</hot:HotelDetailsReq>
</soapenv:Body>
`xml/soapenv:Envelope
Regarding the Media: Media request is a separate XML request and you need to pass the below request to obtain Media links for Hotels.
`xml
<soapenv:Body>
<HotelMediaLinksReq xmlns="http://www.travelport.com/schema/hotel_v36_0" TraceId="trace" AuthorizedBy="user" TargetBranch="PXXXXX" SizeCode="E">
<BillingPointOfSaleInfo xmlns="http://www.travelport.com/schema/common_v36_0" OriginApplication="uAPI"/>
<HotelProperty HotelCode="77511" HotelChain="ES"/>
</HotelMediaLinksReq>
</soapenv:Body>
`xml/soapenv:Envelope
Thank you, B.Rgds, Niranda
Request
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:HotelMediaLinksReq xmlns:ns2="http://www.travelport.com/schema/hotel_v38_0" xmlns:ns3="http://www.travelport.com/schema/vehicle_v38_0" xmlns:ns4="http://www.travelport.com/schema/common_v38_0" TargetBranch="P7004925">
<ns4:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<ns2:HotelProperty HotelChain="HX" HotelCode="78186"/>
</ns2:HotelMediaLinksReq>
</soap:Body>
</soap:Envelope>
Response
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<hotel:HotelMediaLinksRsp TransactionId="640C8C6C0A07643CC5F09ADA2D53C1D2" ResponseTime="210" xmlns:hotel="http://www.travelport.com/schema/hotel_v38_0" xmlns:common_v38_0="http://www.travelport.com/schema/common_v38_0">
<hotel:HotelPropertyWithMediaItems>
<hotel:HotelProperty HotelChain="HX" HotelCode="78186"/>
<common_v38_0:MediaItem caption="Virtual Tour" type="Gallery" url="https://www.vfmii.com/exc/aspquery?command=invoke&ipid=HX4426&ids=42337&RM=N" icon="https://www.vfmii.com//medlib/static_load_images/galileo_richmedia_icon-film.png"/>
</hotel:HotelPropertyWithMediaItems>
</hotel:HotelMediaLinksRsp>
</SOAP:Body>
</SOAP:Envelope>
I got invalid request in icon within MediaItem, I test many hotel code, and all of them gives invalid icons, why? And why we are getting only one icon? can travelport api return to us many images?
Thanks
Hi JadChahine,
To get many images please use the HotelMediaLinksRequest which can provide images for a particular Hotel Property as well as images from 20 Hotel Properties at once. Please find below the sample request and response. Please let me know how it goes. Thanks.
Thanks & Regards Vivekjyoti Pramanik
Hi VivekJyoti,
What's wrong in the request?
Request
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:HotelMediaLinksReq xmlns:ns2="http://www.travelport.com/schema/hotel_v38_0" xmlns:ns3="http://www.travelport.com/schema/vehicle_v38_0" xmlns:ns4="http://www.travelport.com/schema/common_v38_0" RichMedia="true" Gallery="true" TargetBranch="P7004925">
<ns4:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<ns2:HotelProperty HotelChain="HI" HotelCode="43163" HotelLocation="SYD" Name="HOLIDAY INN SYDNEY AIRPORT" VendorLocationKey="VendorLocationKey" HotelTransportation="1000">
<ns2:PropertyAddress>
<ns2:Address>CORNER OF BOURKE ROA</ns2:Address>
</ns2:PropertyAddress>
</ns2:HotelProperty>
</ns2:HotelMediaLinksReq>
</soap:Body>
</soap:Envelope>
Response
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<hotel:HotelMediaLinksRsp TransactionId="64737FE10A07643B7EFA7C9CC5033684" ResponseTime="154" xmlns:hotel="http://www.travelport.com/schema/hotel_v38_0" xmlns:common_v38_0="http://www.travelport.com/schema/common_v38_0">
<hotel:HotelPropertyWithMediaItems>
<hotel:HotelProperty HotelChain="HI" HotelCode="43163" HotelLocation="SYD" Name="HOLIDAY INN SYDNEY AIRPORT" VendorLocationKey="VendorLocationKey" HotelTransportation="1000">
<hotel:PropertyAddress>
<hotel:Address>CORNER OF BOURKE ROA</hotel:Address>
</hotel:PropertyAddress>
</hotel:HotelProperty>
<common_v38_0:MediaItem caption="Virtual Tour" type="Gallery" url="https://www.vfmii.com/exc/aspquery?command=invoke&ipid=HI2960&ids=42337&RM=N" icon="https://www.vfmii.com//medlib/static_load_images/galileo_richmedia_icon-film.png"/>
</hotel:HotelPropertyWithMediaItems>
</hotel:HotelMediaLinksRsp>
</SOAP:Body>
</SOAP:Envelope>
Hi Jad,
There are few optional items which is being sent with invalid values. But it is not impacting the result. For this particular Hotel there are not many images available. That is why it is only returning the gallery which is available. Please try with the below xml request with a different Hotel property. Please let me know how it goes. Thanks.
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:HotelMediaLinksReq TargetBranch="TRGT_BRCH" xmlns:ns2="http://www.travelport.com/schema/hotel_v38_0" xmlns:ns3="http://www.travelport.com/schema/vehicle_v38_0" xmlns:ns4="http://www.travelport.com/schema/common_v38_0">
<ns4:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<ns2:HotelProperty HotelChain="HI" HotelCode="43163">
</ns2:HotelProperty>
</ns2:HotelMediaLinksReq>
</soap:Body>
</soap:Envelope>
Thanks & Regards Vivekjyoti Pramanik
Hi Vivekyoti,
I tried many hotel property address and all of them are returning one icon only
Request
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:HotelMediaLinksReq xmlns:ns2="http://www.travelport.com/schema/hotel_v38_0" xmlns:ns3="http://www.travelport.com/schema/vehicle_v38_0" xmlns:ns4="http://www.travelport.com/schema/common_v38_0" RichMedia="true" Gallery="true" TargetBranch="P7004925">
<ns4:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<ns2:HotelProperty HotelChain="HI" HotelCode="43163">
<ns2:PropertyAddress>
<ns2:Address>1001 MARQUET AVENUE</ns2:Address>
</ns2:PropertyAddress>
</ns2:HotelProperty>
</ns2:HotelMediaLinksReq>
</soap:Body>
</soap:Envelope>
Response
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<hotel:HotelMediaLinksRsp TransactionId="69331F870A07643B7EFA7C9C1D81182C" ResponseTime="177" xmlns:hotel="http://www.travelport.com/schema/hotel_v38_0" xmlns:common_v38_0="http://www.travelport.com/schema/common_v38_0">
<hotel:HotelPropertyWithMediaItems>
<hotel:HotelProperty HotelChain="HI" HotelCode="43163">
<hotel:PropertyAddress>
<hotel:Address>1001 MARQUET AVENUE</hotel:Address>
</hotel:PropertyAddress>
</hotel:HotelProperty>
<common_v38_0:MediaItem caption="Virtual Tour" type="Gallery" url="https://www.vfmii.com/exc/aspquery?command=invoke&ipid=HI2960&ids=42337&RM=N" icon="https://www.vfmii.com//medlib/static_load_images/galileo_richmedia_icon-film.png"/>
</hotel:HotelPropertyWithMediaItems>
</hotel:HotelMediaLinksRsp>
</SOAP:Body>
</SOAP:Envelope>
Request
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:HotelMediaLinksReq xmlns:ns2="http://www.travelport.com/schema/hotel_v38_0" xmlns:ns3="http://www.travelport.com/schema/vehicle_v38_0" xmlns:ns4="http://www.travelport.com/schema/common_v38_0" RichMedia="true" Gallery="true" TargetBranch="P7004925">
<ns4:BillingPointOfSaleInfo OriginApplication="UAPI"/>
<ns2:HotelProperty HotelChain="HI" HotelCode="43163">
<ns2:PropertyAddress>
<ns2:Address>710 MARQUETTE AVE</ns2:Address>
</ns2:PropertyAddress>
</ns2:HotelProperty>
</ns2:HotelMediaLinksReq>
</soap:Body>
</soap:Envelope>
Response
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<hotel:HotelMediaLinksRsp TransactionId="6935835E0A07643B7EFA7C9C84245D3A" ResponseTime="188" xmlns:hotel="http://www.travelport.com/schema/hotel_v38_0" xmlns:common_v38_0="http://www.travelport.com/schema/common_v38_0">
<hotel:HotelPropertyWithMediaItems>
<hotel:HotelProperty HotelChain="HI" HotelCode="43163">
<hotel:PropertyAddress>
<hotel:Address>710 MARQUETTE AVE</hotel:Address>
</hotel:PropertyAddress>
</hotel:HotelProperty>
<common_v38_0:MediaItem caption="Virtual Tour" type="Gallery" url="https://www.vfmii.com/exc/aspquery?command=invoke&ipid=HI2960&ids=42337&RM=N" icon="https://www.vfmii.com//medlib/static_load_images/galileo_richmedia_icon-film.png"/>
</hotel:HotelPropertyWithMediaItems>
</hotel:HotelMediaLinksRsp>
</SOAP:Body>
</SOAP:Envelope>
Hi JadChahine,
Could you please try with the below request. Please let me know how it goes. Thanks.
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<HotelMediaLinksReq xmlns="http://www.travelport.com/schema/hotel_v36_0" TraceId="192c1b02-8a9c-483e-9515-e3815a8f4420" AuthorizedBy="Travelport" TargetBranch="P7004925" SizeCode="E">
<BillingPointOfSaleInfo xmlns="http://www.travelport.com/schema/common_v36_0" OriginApplication="uAPI" />
<HotelProperty HotelCode="53177" HotelChain="TO" />
</HotelMediaLinksReq>
</SOAP:Body>
</SOAP:Envelope>
Thanks & Regards Vivekjyoti Pramanik
Hi VivekJyoti,
It is returning many photos for this hotel code and chain, thanks.
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<hotel:HotelMediaLinksRsp TransactionId="6957F7650A07643B7EFA7C9C910500F0" ResponseTime="246" xmlns:hotel="http://www.travelport.com/schema/hotel_v38_0" xmlns:common_v38_0="http://www.travelport.com/schema/common_v38_0">
<hotel:HotelPropertyWithMediaItems>
<hotel:HotelProperty HotelChain="TO" HotelCode="53177"/>
<common_v38_0:MediaItem caption="Business Center" height="208" width="300" type="OTHER" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/54/denta_phototour12_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Exterior" height="69" width="100" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="Exterior" height="104" width="150" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="Exterior" height="138" width="200" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="Exterior" height="173" width="250" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="Exterior" height="208" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Exterior" height="300" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_G.jpg" sizeCode="F"/>
<common_v38_0:MediaItem caption="Exterior" height="242" width="350" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_H.jpg" sizeCode="J"/>
<common_v38_0:MediaItem caption="Exterior" height="70" width="70" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="Exterior" height="266" width="384" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_I.jpg" sizeCode="L"/>
<common_v38_0:MediaItem caption="Exterior" height="332" width="480" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_J.jpg" sizeCode="E"/>
<common_v38_0:MediaItem caption="Exterior" height="477" width="689" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/145/483/TPS_Exterior_P.jpg" sizeCode="O"/>
<common_v38_0:MediaItem caption="Exterior" height="70" width="70" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="Exterior" height="69" width="100" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="Exterior" height="104" width="150" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="Exterior" height="138" width="200" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="Exterior" height="173" width="250" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="Exterior" height="208" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Exterior" height="300" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_G.jpg" sizeCode="F"/>
<common_v38_0:MediaItem caption="Exterior" height="242" width="350" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_H.jpg" sizeCode="J"/>
<common_v38_0:MediaItem caption="Exterior" height="266" width="384" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_I.jpg" sizeCode="L"/>
<common_v38_0:MediaItem caption="Exterior" height="332" width="480" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_J.jpg" sizeCode="E"/>
<common_v38_0:MediaItem caption="Exterior" height="477" width="689" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/51/207/951/denta_phototour21_P.jpg" sizeCode="O"/>
<common_v38_0:MediaItem caption="Entrance" height="70" width="70" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="Entrance" height="69" width="100" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="Entrance" height="104" width="150" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="Entrance" height="138" width="200" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="Entrance" height="173" width="250" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="Entrance" height="242" width="350" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_H.jpg" sizeCode="J"/>
<common_v38_0:MediaItem caption="Entrance" height="266" width="384" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_I.jpg" sizeCode="L"/>
<common_v38_0:MediaItem caption="Entrance" height="332" width="480" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_J.jpg" sizeCode="E"/>
<common_v38_0:MediaItem caption="Entrance" height="477" width="689" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_P.jpg" sizeCode="O"/>
<common_v38_0:MediaItem caption="Entrance" height="208" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Entrance" height="300" width="300" type="EXT" url="https://d2whcypojkzby.cloudfront.net/imageRepo/2/0/47/146/800/denta_phototour17_G.jpg" sizeCode="F"/>
<common_v38_0:MediaItem caption="Front Desk" height="138" width="200" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="Front Desk" height="70" width="70" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="Front Desk" height="69" width="100" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="Front Desk" height="104" width="150" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="Front Desk" height="173" width="250" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="Front Desk" height="208" width="300" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Front Desk" height="300" width="300" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_G.jpg" sizeCode="F"/>
<common_v38_0:MediaItem caption="Front Desk" height="242" width="350" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_H.jpg" sizeCode="J"/>
<common_v38_0:MediaItem caption="Front Desk" height="266" width="384" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_I.jpg" sizeCode="L"/>
<common_v38_0:MediaItem caption="Front Desk" height="332" width="480" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_J.jpg" sizeCode="E"/>
<common_v38_0:MediaItem caption="Front Desk" height="477" width="689" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/10/denta_phototour01_P.jpg" sizeCode="O"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="70" width="70" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="138" width="200" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="173" width="250" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="208" width="300" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="300" width="300" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_G.jpg" sizeCode="F"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="242" width="350" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_H.jpg" sizeCode="J"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="266" width="384" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_I.jpg" sizeCode="L"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="332" width="480" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_J.jpg" sizeCode="E"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="477" width="689" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_P.jpg" sizeCode="O"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="69" width="100" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="Lobby Sitting Area" height="104" width="150" type="LOBBY" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/14/denta_phototour03_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="TowneMap" height="70" width="70" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_A.jpg" sizeCode="G"/>
<common_v38_0:MediaItem caption="TowneMap" height="69" width="100" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_B.jpg" sizeCode="T"/>
<common_v38_0:MediaItem caption="TowneMap" height="104" width="150" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_C.jpg" sizeCode="I"/>
<common_v38_0:MediaItem caption="TowneMap" height="138" width="200" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_D.jpg" sizeCode="S"/>
<common_v38_0:MediaItem caption="TowneMap" height="173" width="250" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_E.jpg" sizeCode="M"/>
<common_v38_0:MediaItem caption="TowneMap" height="208" width="300" type="MAP" url="https://d2whcypojkzby.cloudfront.net/imageRepo/3/0/46/733/18/denta_phototour02_F.jpg" sizeCode="B"/>
<common_v38_0:MediaItem caption="TowneMap" height="300" width="300" type="MAP" url="
........................................
Hello, what should I do in the code to get the media item values?
Request
Response
What about media item?
Thanks&Regards