home > support > API > Marketplace API > API: tour information
Return full information about a specific Tour.
If you are calling the API directly from your website (i.e. rather than populating your own database with tour data) we would recommend caching this API for around an hour. This helps you keep within API limits and to keep your site running fast. More on API caching.
Call | /c/tour/show |
Formats | XML |
Example | /c/tour/show.xml?id=92 |
Verb | GET |
PHP examples use the PHP Client Library with SimpleXML
object show_tour ( int $tour, int $channel [ , string $querystring = "" ] )
// ID for the Tour we want the details for
$tour = 152;
// Channel (Operator) ID of the Tour
$channel = 6;
// Query the TourCMS API
$result = $tourcms->show_tour($tour, $channel);
// Go straight to the tour node
$tour = $result->tour;
// Print out the tour name and lead in price
print $tour->tour_name.' - from only '.$tour->from_price_display;
Nile Family Adventure - from only £650
C# examples use the .Net Client Library
XmlDocument ShowTour (int tourId, int channelId)
XmlDocument ShowTour (int tourId, int channelId, string queryString)
// ID for the Tour we want the details for
int tourId = 152;
// Channel (Operator) ID of the Tour
int channelId = 6;
// Query the TourCMS API
XmlDocument doc = myTourCMS.ShowTour(tourId, channeId);
// Display the tour name and lead in price
string tourName = doc.SelectSingleNode("//tour/tour_name").innerText;
string tourPrice =
doc.SelectSingleNode("//tour/from_price_display").innerText;
Console.WriteLine(tourName + " - from only " + tourPrice);
Nile Family Adventure - from only £650
VB examples use the .Net Client Library
XmlDocument ShowTour (Integer TourId, Integer ChannelId)
XmlDocument ShowTour (Integer TourId, Integer ChannelId, String QueryString)
' ID for the Tour we want the details for
Dim tourId As Integer = 152
' Channel (Operator) ID of the Tour
Dim channelId As Integer = 6
' Query the TourCMS API
Dim doc As XmlDocument = myTourCMS.ShowTour(tourId, channeId)
' Display the tour name and lead in price
Dim tourName As String = doc.SelectSingleNode("//tour/tour_name").innerText
Dim tourPrice As String =
doc.SelectSingleNode("//tour/from_price_display").innerText
Console.WriteLine(tourName & " - from only " & tourPrice)
Nile Family Adventure - from only £650
NodeJS examples use the NodeJS Wrapper
// Show Tour with ID 1 on Channel 3930
TourCMS.showTour({
channelId: 3930,
tourId: 1,
callback: function(response) {
console.log(response.tour.tour_name_long);
}
});
Knoydart Peninsula Walking Adventure
Looking for sample code in a different language? TourCMS and community provided API libraries
Implementing yourself? Check the REST info for this endpoint.
Enter your TourCMS API credentials below to call the Show Tour endpoint.
Parameter | Notes |
---|---|
id | Tour ID. If using a wrapper library this will be passed as a separate argument. |
show_options | Set to 1 if you would like TourCMS to return information on the Options (ancillary items / upgrades) available for booking via the API on this Tour |
show_offers |
Set to 1 if you would like TourCMS to return information on the soonest and most recently loaded special offer for this tour (if any), essentially the same data as returned for each tour in Tour Search API. A full list of offers for a particular tour can be obtained via the Dates and deals API.
Also returns a <from_price_cached> node which matches the value of <from_price> returned in the Search Tours Endpoint, as they can vary due to search results caching when exchange rates are updated. |
order | Any alternative tours returned (see alternative_tours section below) can be ordered using the same values as the Tour Search API |
show_questions | Set to 1 if you would like TourCMS to return the questions. Only active questions will be returned. |
The Channel ID is also passed via the request header, this is required as Tour IDs are unique within a particular channel (Operator) rather than being unique system wide.
Node | Notes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request | Confirmation of the request that you sent | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
error | Any error message returned, if there is no error this will just contain the text OK | tour |
The tour node contains the following child nodes.
|
<?xml version="1.0" encoding="UTF-8"?>
<response>
<request>GET /c/tour/show.xml?id=1</request>
<error>OK</error>
<tour>
<channel_id>3930</channel_id>
<account_id>4069</account_id>
<tour_id>1</tour_id>
<tour_name>Half day rafting</tour_name>
<tour_name_long>Half day rafting</tour_name_long>
<tour_code>HDR</tour_code>
<time_type>strict_start</time_type>
<start_time>MULTI</start_time>
<end_time>MULTI</end_time>
<start_timezone>Europe/London</start_timezone>
<end_timezone>Europe/London</end_timezone>
<quantity_rule>Q</quantity_rule>
<from_price>50.00</from_price>
<from_price_display>&#163;50</from_price_display>
<from_price_unit>0</from_price_unit>
<sale_currency>GBP</sale_currency>
<has_sale>1</has_sale>
<has_d>1</has_d>
<has_f>0</has_f>
<has_h>0</has_h>
<created_date>2011-09-09</created_date>
<descriptions_last_updated>2018-02-10</descriptions_last_updated>
<volume_pricing>0</volume_pricing>
<supplier_id>2</supplier_id>
<supplier_tour_code>ABC</supplier_tour_code>
<cost_currency>USD</cost_currency>
<staff_note />
<operational_note />
<cutoff>
<type>before_start_sec</type>
<value>86400</value>
</cutoff>
<min_booking_size>1</min_booking_size>
<max_booking_size>10</max_booking_size>
<next_bookable_date>2021-08-10</next_bookable_date>
<last_bookable_date>2025-10-27</last_bookable_date>
<has_sale_jan>1</has_sale_jan>
<has_sale_feb>1</has_sale_feb>
<has_sale_mar>1</has_sale_mar>
<has_sale_apr>1</has_sale_apr>
<has_sale_may>1</has_sale_may>
<has_sale_jun>1</has_sale_jun>
<has_sale_jul>0</has_sale_jul>
<has_sale_aug>1</has_sale_aug>
<has_sale_sep>1</has_sale_sep>
<has_sale_oct>1</has_sale_oct>
<has_sale_nov>1</has_sale_nov>
<has_sale_dec>1</has_sale_dec>
<from_price_jan>50.00</from_price_jan>
<from_price_jan_display>&#163;50</from_price_jan_display>
<from_price_feb>50.00</from_price_feb>
<from_price_feb_display>&#163;50</from_price_feb_display>
<from_price_mar>50.00</from_price_mar>
<from_price_mar_display>&#163;50</from_price_mar_display>
<from_price_apr>50.00</from_price_apr>
<from_price_apr_display>&#163;50</from_price_apr_display>
<from_price_may>50.00</from_price_may>
<from_price_may_display>&#163;50</from_price_may_display>
<from_price_jun>50.00</from_price_jun>
<from_price_jun_display>&#163;50</from_price_jun_display>
<from_price_jul>0.00</from_price_jul>
<from_price_jul_display>&#163;0</from_price_jul_display>
<from_price_aug>50.00</from_price_aug>
<from_price_aug_display>&#163;50</from_price_aug_display>
<from_price_sep>50.00</from_price_sep>
<from_price_sep_display>&#163;50</from_price_sep_display>
<from_price_oct>50.00</from_price_oct>
<from_price_oct_display>&#163;50</from_price_oct_display>
<from_price_nov>50.00</from_price_nov>
<from_price_nov_display>&#163;50</from_price_nov_display>
<from_price_dec>50.00</from_price_dec>
<from_price_dec_display>&#163;50</from_price_dec_display>
<priority>MEDIUM</priority>
<country>GB</country>
<languages_spoken>en,fr,pt</languages_spoken>
<ratings>
<average>4.25</average>
<count>190</count>
<max>5</max>
<platform>feefo</platform>
</ratings>
<geocode_start>51.490537,-0.122541</geocode_start>
<geocode_end>51.490537,-0.122541</geocode_end>
<geocode_midpoints>
<midpoint>
<geocode>40.116929,-74.199418</geocode>
<can_start_end_here>1</can_start_end_here>
<label />
</midpoint>
<midpoint>
<geocode>40.116929,-74.199418</geocode>
<can_start_end_here>1</can_start_end_here>
<label />
</midpoint>
</geocode_midpoints>
<product_type>4</product_type>
<tourleader_type>1</tourleader_type>
<grade>3</grade>
<accomrating>1</accomrating>
<location>London</location>
<summary>White water rafting on the rapids of the River Thames</summary>
<shortdesc>See London at speed, feel the wind in your hair... Experience the thrills and spills of rafting on one of the most famous rivers in the world. Travel through the heart of London on your raft past the infamous Tower Bridge, The Tower of London, The London Eye and the Houses of Parliament</shortdesc>
<longdesc>Are you brave enough to tackle the white water rapids of the River Thames?
Upon arrival you’ll be kitted out with a wetsuit, buoyancy aid, helmet and boots before going through a safety assessment and some flat water exercises– you’ll learn the secrets of navigating the world class white water river course. Sessions start with an adventurous first run down the course, designed to get you used to the feel of the boat and working as a team. We progressively up the fear factor each time and by your final run you’ll be surfing, high siding, spinning and nose dunking with the very best!
Rafters must be at least 14 years of age and under 18 stone. Any rafters aged between 14 - 18 must have our Parental Consent Form signed by their legal parent/guardian before being able to raft on the river. Please arrive 30 minutes before your start time and allow three to four hours for the whole rafting experience. White water rafting is an extreme sport, while navigating the course you could well take a tumble into grade 4 rapids, so be prepared. Our bank safety team will be on hand to rescue you and safely help you out of the water before helping you back aboard your raft.
During your rafting experience you will need to remove jewellery and any items of value. To avoid risk of loss or damage please leave valuables at home.</longdesc>
<itinerary><ul> <li>
<strong>Itinerary item 1</strong>
Upon arrival you’ll be kitted out with a wetsuit, buoyancy aid, helmet and boots.
</li> <li>
<strong>Itinerary item 2</strong>
You'll have a safety assessment and go through some flat water exercises in order to start to learn the secrets of navigating the world class white water river course
</li> <li>
<strong>Itinerary item 3</strong>
The main session starts with an adventurous first run down the river from Tower Bridge to Waterloo, designed to get you used to the feel of the boat.
</li> <li>
<strong>Itinerary item 4</strong>
By your final run you’ll be surfing, high siding, spinning and nose dunking with the very best! Tour boats watch out!
</li></ul></itinerary>
<exp>- Seeing the great sights of London and getting active on the river.
- Learn a new skill
- Team building</exp>
<duration_desc>Half day</duration_desc>
<duration>1</duration>
<available>Year round</available>
<pick>Hotel Pickup available. Please provide hotel name via email after booking</pick>
<redeem>Please bring your voucher with you when you check in</redeem>
<inc_ex><ul> <li>Raft</li> <li>Paddle</li> <li>Wetsuit</li> <li>Life jacket</li> <li>Services of guide/instructor</li></ul></inc_ex>
<inc><ul> <li>Raft</li> <li>Paddle</li> <li>Wetsuit</li> <li>Life jacket</li> <li>Services of guide/instructor</li></ul></inc>
<ex><ul> <li>Towel</li> <li>Swimwear</li></ul></ex>
<extras>Upgrade to a full day (for additional charge)</extras>
<essential>Equipment is provided - just bring your swimsuit and a towel. Solo travellers will be placed in a mixed group.</essential>
<rest>No children under 14. No pets. Whilst you will be provided with a buoyancy aid and wetsuit, we do not advise you to do this activity unless you can swim at least 10m.</rest>
<tour_url>http://tourcms.com/features/</tour_url>
<tour_url_tracked>http://tourcms.com/features/</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=1&a=4069&w=3930&people=1&ty=t&k=b7d2421180a3</book_url>
<documents>
<document>
<document_description>Route map</document_description>
<document_url>https://cdn.tourcms.com/a/4069/1/3930.pdf</document_url>
</document>
</documents>
<videos>
<video>
<video_id>5NV6Rdv1a3I</video_id>
<video_service>youtube</video_service>
<video_url>http://www.youtube.com/watch?v=5NV6Rdv1a3I</video_url>
</video>
</videos>
<suitable_for_solo>1</suitable_for_solo>
<suitable_for_couples>1</suitable_for_couples>
<suitable_for_children>0</suitable_for_children>
<suitable_for_groups>1</suitable_for_groups>
<suitable_for_students>1</suitable_for_students>
<suitable_for_business>1</suitable_for_business>
<suitable_for_wheelchairs>0</suitable_for_wheelchairs>
<pickup_on_request>0</pickup_on_request>
<pickup_points>
<pickup>
<pickup_name>Charing Cross Amba Hotel</pickup_name>
<description>Near front desk</description>
<address1>Strand</address1>
<address2>London</address2>
<postcode>WC2N 5HX</postcode>
<geocode>51.508653,-0.125007</geocode>
<pickup_id>9</pickup_id>
</pickup>
<pickup>
<pickup_name>The Hoxton, Shoreditch</pickup_name>
<description>By the bar</description>
<address1>81 Great Eastern Street</address1>
<address2>London</address2>
<postcode>EC2A 3HU</postcode>
<geocode>51.523679,-0.079310</geocode>
<pickup_id>7842</pickup_id>
</pickup>
</pickup_points>
<alternative_tours>
<tour>
<tour_id>9</tour_id>
<tour_name>Gatwick Airport transfer - mini van</tour_name>
<tour_name_long>Gatwick Airport transfer to Central London - mini van</tour_name_long>
<location>London</location>
<tour_url>http://tourcms.com/features/</tour_url>
<tour_url_tracked>http://tourcms.com/features/</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=9&a=4069&w=3930&people=1&ty=t&k=14f26bdd0367</book_url>
<from_price>120.00</from_price>
<from_price_display>&#163;120</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/9/1/thumbnail.jpg</thumbnail_image>
<product_type direction="2" airport_code="LGW">2</product_type>
</tour>
<tour>
<tour_id>55</tour_id>
<tour_name>PMI Airport to center</tour_name>
<tour_name_long>PMI Airport to center</tour_name_long>
<location>Palma de Mallorca</location>
<tour_url>http://tourcms.com/tours/55_pmi_airport_to_center_12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/55_pmi_airport_to_center_12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=55&a=4069&w=3930&people=1&ty=t&k=5dde80a767f5</book_url>
<tour_code>TE_4069_55|7248</tour_code>
<from_price>50.00</from_price>
<from_price_display>&#163;50</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/55/1/thumbnail.png</thumbnail_image>
<product_type direction="2" airport_code="PMI">2</product_type>
</tour>
<tour>
<tour_id>83</tour_id>
<tour_name>Multi dep/day tour</tour_name>
<tour_name_long>Multi dep/day tour</tour_name_long>
<location>Zurich</location>
<tour_url>http://tourcms.com/support/</tour_url>
<tour_url_tracked>http://tourcms.com/support/</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=83&a=4069&w=3930&people=1&ty=t&k=bf18f05afc00</book_url>
<from_price>120.00</from_price>
<from_price_display>&#163;120</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/83/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>70</tour_id>
<tour_name>Granada airport bus</tour_name>
<tour_name_long>Granada airport bus</tour_name_long>
<location>Granada</location>
<tour_url>http://tourcms.com/tours/70_granada_airport_bus_12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/70_granada_airport_bus_12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=70&a=4069&w=3930&people=1&ty=t&k=c961efb45593</book_url>
<tour_code>70</tour_code>
<from_price>10.00</from_price>
<from_price_display>&#163;10</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/70/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>72</tour_id>
<tour_name>Bundle Maca 1</tour_name>
<tour_name_long>Bundle Maca 1</tour_name_long>
<location>Granada</location>
<tour_url>http://tourcms.com/tours/72_bundle_maca_1_12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/72_bundle_maca_1_12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=72&a=4069&w=3930&people=1&ty=t&k=de7d113ecf80</book_url>
<tour_code>72</tour_code>
<from_price>15.00</from_price>
<from_price_display>&#163;15</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/72/1/thumbnail.jpg</thumbnail_image>
<product_type direction="0">2</product_type>
</tour>
<tour>
<tour_id>71</tour_id>
<tour_name>Granada City Tour</tour_name>
<tour_name_long>Granada City Tour</tour_name_long>
<location>London</location>
<tour_url>http://tourcms.com/tours/71_granada_city_tour_12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/71_granada_city_tour_12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=71&a=4069&w=3930&people=1&ty=t&k=63d10a283439</book_url>
<tour_code>71</tour_code>
<from_price>20.00</from_price>
<from_price_display>&#163;20</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/71/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>3</tour_id>
<tour_name>Sweet Streets of London (Quantity priced item)</tour_name>
<tour_name_long>The Sweet Streets of London (Quantity priced item)</tour_name_long>
<location>London</location>
<tour_url>http://tourcms.com/destinations/united-kingdom/quantity-priced-item_3930-3/</tour_url>
<tour_url_tracked>http://tourcms.com/destinations/united-kingdom/quantity-priced-item_3930-3/</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=3&a=4069&w=3930&people=1&ty=t&k=b1af3e8bf47d</book_url>
<tour_code>BIGBIRD</tour_code>
<from_price>48.00</from_price>
<from_price_display>&#163;48</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/3/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>80</tour_id>
<tour_name>Aeropuerto Adolfo Suarez</tour_name>
<tour_name_long>Aeropuerto Adolfo Suarez</tour_name_long>
<location>Granada</location>
<tour_url>http://tourcms.com/tours/80_aeropuerto_adolfo_suarez_12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/80_aeropuerto_adolfo_suarez_12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=80&a=4069&w=3930&people=1&ty=t&k=6e9c46a14f08</book_url>
<tour_code>80</tour_code>
<from_price>10.00</from_price>
<from_price_display>&#163;10</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/80/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>88</tour_id>
<tour_name>Danube panorama (test)</tour_name>
<tour_name_long>Danube panorama (test)</tour_name_long>
<location>Granada</location>
<tour_url>http://tourcms.com/tours/88_danube_panorama__test__12429.php</tour_url>
<tour_url_tracked>http://tourcms.com/tours/88_danube_panorama__test__12429.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=88&a=4069&w=3930&people=1&ty=t&k=5b60cde489c9</book_url>
<tour_code>70</tour_code>
<from_price>10.00</from_price>
<from_price_display>&#163;10</from_price_display>
<from_price_unit>0</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/88/1/thumbnail.jpg</thumbnail_image>
<product_type>4</product_type>
</tour>
<tour>
<tour_id>24</tour_id>
<tour_name>Gatwick Airport to Central London - mini van</tour_name>
<tour_name_long>Gatwick Airport to Central London - mini van</tour_name_long>
<location>London</location>
<tour_url>http://tourcms.com/index.php</tour_url>
<tour_url_tracked>http://tourcms.com/index.php</tour_url_tracked>
<book_url>https://live.tourcms.com/reserve/r1.php?t=24&a=4069&w=3930&people=1&ty=t&k=ca6dbb07b620</book_url>
<from_price>120.00</from_price>
<from_price_display>&#163;120</from_price_display>
<from_price_unit>2</from_price_unit>
<thumbnail_image>https://cdn.tourcms.com/a/4069/24/1/thumbnail.jpg</thumbnail_image>
<product_type direction="3" airport_code="LGW">2</product_type>
</tour>
</alternative_tours>
<images>
<image thumbnail="true">
<url_thumbnail>https://cdn.tourcms.com/a/4069/1/1/thumbnail.jpg</url_thumbnail>
<url>https://cdn.tourcms.com/a/4069/1/1/default.jpg</url>
<url_large>https://cdn.tourcms.com/a/4069/1/1/large.jpg</url_large>
<url_xlarge>https://cdn.tourcms.com/a/4069/1/1/xlarge.jpg</url_xlarge>
<image_desc>Image: graham_alton, flickr</image_desc>
</image>
<image>
<url_thumbnail>https://cdn.tourcms.com/a/4069/1/2/thumbnail.jpg</url_thumbnail>
<url>https://cdn.tourcms.com/a/4069/1/2/default.jpg</url>
<url_large>https://cdn.tourcms.com/a/4069/1/2/large.jpg</url_large>
<url_xlarge>https://cdn.tourcms.com/a/4069/1/2/xlarge.jpg</url_xlarge>
<image_desc>rafting image test description 1</image_desc>
</image>
<image>
<url_thumbnail>https://cdn.tourcms.com/a/4069/1/3/thumbnail.jpg</url_thumbnail>
<url>https://cdn.tourcms.com/a/4069/1/3/default.jpg</url>
<url_large>https://cdn.tourcms.com/a/4069/1/3/large.jpg</url_large>
<image_desc>rafting image test description 2</image_desc>
</image>
</images>
<new_booking>
<people_selection>
<rate>
<label_1>People</label_1>
<label_2 />
<minimum>1</minimum>
<maximum>10</maximum>
<rate_id>r1</rate_id>
<agecat>a</agecat>
<agerange_min>7</agerange_min>
<agerange_max>100</agerange_max>
<from_price>50.00</from_price>
<from_price_display>&#163;50</from_price_display>
<rate_code />
</rate>
<rate>
<label_1>Child</label_1>
<label_2 />
<minimum>1</minimum>
<maximum>10</maximum>
<rate_id>r2</rate_id>
<agecat>c</agecat>
<agerange_min>0</agerange_min>
<agerange_max>6</agerange_max>
<from_price>50.00</from_price>
<from_price_display>&#163;50</from_price_display>
<rate_code />
</rate>
</people_selection>
<date_selection>
<date_type>DATE</date_type>
</date_selection>
</new_booking>
<custom_fields>
<field>
<name>testfield2</name>
<value>Something something here 2</value>
</field>
<field>
<name>a1</name>
<value />
</field>
<field>
<name>testfield</name>
<value>New <strong>field</strong> one info here testing 1 2 3</value>
</field>
<field>
<name>glwwvideo</name>
<value>https://player.vimeo.com/external/157653331.hd.mp4?s=a6ee5312ca90254e8c428b51da7c47bc094994ed&profile_id=113</value>
</field>
<field>
<name>single</name>
<value>https://1drv.ms/f/s!AoLsZgsyTWu7jAmwc8nDCZ3sTE7x</value>
</field>
</custom_fields>
<categories>
<group>
<name>Activity</name>
<values>
<value>Rafting</value>
</values>
</group>
<group>
<name>Granada</name>
</group>
</categories>
<health_and_safety>
<item>
<name>face_masks_requied_for_travelers</name>
<display_name>Face masks required for travelers</display_name>
<value>NOTSET</value>
</item>
<item>
<name>face_masks_requied_for_guides</name>
<display_name>Face masks required for guides</display_name>
<value>NOTSET</value>
</item>
<item>
<name>face_masks_provided_for_travelers</name>
<display_name>Face masks provided for travelers</display_name>
<value>NOTSET</value>
</item>
<item>
<name>hand_sanitizer_available</name>
<display_name>Hand sanitizer available to travelers and staff</display_name>
<value>NOTSET</value>
</item>
<item>
<name>social_distancing_enforced</name>
<display_name>Social distancing enforced throughout experience</display_name>
<value>NOTSET</value>
</item>
<item>
<name>regularly_sanitized</name>
<display_name>Regularly sanitized high-traffic areas</display_name>
<value>NOTSET</value>
</item>
<item>
<name>equipment_sanitized</name>
<display_name>Gear/equipment sanitized between use</display_name>
<value>NOTSET</value>
</item>
<item>
<name>transportation_vehicles_sanitized</name>
<display_name>Transportation vehicles regularly sanitized</display_name>
<value>NOTSET</value>
</item>
<item>
<name>guides_required_to_wash_hands</name>
<display_name>Guides required to wash hands</display_name>
<value>NOTSET</value>
</item>
<item>
<name>temperature_checks_for_staff</name>
<display_name>Regular temperature checks for staff</display_name>
<value>NOTSET</value>
</item>
<item>
<name>temperature_checks_for_travelers</name>
<display_name>Temperature checks for travelers upon arrival</display_name>
<value>NOTSET</value>
</item>
<item>
<name>contactless_payments_for_extras</name>
<display_name>Contactless payments for gratuities and add-ons</display_name>
<value>NOTSET</value>
</item>
</health_and_safety>
<distribution_identifier>TE_4069_1</distribution_identifier>
</tour>
</response>