Skip to content

Commit

Permalink
[skip ci] Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
concur-docs-machine committed Oct 9, 2024
1 parent 83ba7ce commit 2bb41c9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 26 deletions.
40 changes: 16 additions & 24 deletions api-guides/travel/deeplink-integration-new.html
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,6 @@ <h2 id="limitations">Limitations</h2>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>{IdP_URI}?sp={concur_URI}&amp;relayState=%2Fgoto%2Fair-shop%3Fdeparturedate%3D2023-11-10%26departureLocation%3DJFK%26returndate%3D2023-11-15%26returnlocation%3DLAX
</code></pre></div></div>

<p>Whenever possible, use the correct environment in your link, for example, <code class="language-plaintext highlighter-rouge">eu2</code> or <code class="language-plaintext highlighter-rouge">us2</code>, instead of just <code class="language-plaintext highlighter-rouge">www</code>. This will avoid unnecessary logins.</p>

<blockquote>
<p>Deeplink Integration is not available for mobile and currently it only supports flight / car / hotel / train search and itinerary lookup.</p>
</blockquote>
Expand Down Expand Up @@ -624,11 +622,11 @@ <h2 id="flight-search">Flight Search</h2>

<h4 id="uri-template">URI Template</h4>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://{environment}.concursolutions.com/goto/air-shop?departurelocation={departurelocation}&amp;departuredate={departuredate}&amp;departuretime={departuretime}&amp;returnlocation={returnlocation}&amp;returndate={returndate}&amp;returntime={returntime}&amp;cabintype={cabintype}
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departurelocation={departurelocation}&amp;departuredate={departuredate}&amp;departuretime={departuretime}&amp;returnlocation={returnlocation}&amp;returndate={returndate}&amp;returntime={returntime}&amp;cabintype={cabintype}
</code></pre></div></div>

<h4 id="example-of-usage-1">Example of Usage</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/air-shop?departurelocation=POA&amp;departuredate=2024-08-04&amp;departuretime=13:00&amp;returnlocation=SDU&amp;returndate=2024-08-20&amp;returntime=09:00&amp;cabintype=ECONOMY
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departurelocation=POA&amp;departuredate=2024-08-04&amp;departuretime=13:00&amp;returnlocation=SDU&amp;returndate=2024-08-20&amp;returntime=09:00&amp;cabintype=ECONOMY
</code></pre></div></div>

<h4 id="query-parameters-1">Query Parameters</h4>
Expand Down Expand Up @@ -707,13 +705,13 @@ <h4 id="query-parameters-1">Query Parameters</h4>
</ul>

<h4 id="example-round-trip">Example: Round-Trip</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/air-shop?departurelocation=OPO&amp;departuredate=2024-06-01&amp;departuretime=02:00&amp;returnlocation=BER&amp;returndate=2024-06-02&amp;returntime=03:00&amp;cabintype=BUSINESS_OR_FIRST
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departurelocation=OPO&amp;departuredate=2024-06-01&amp;departuretime=02:00&amp;returnlocation=BER&amp;returndate=2024-06-02&amp;returntime=03:00&amp;cabintype=BUSINESS_OR_FIRST
</code></pre></div></div>

<p>This deeplink will perform a search for a departure flight from OPO to BER airport, on June 1st, 2024, at 02:00AM ±2 and a return flight from BER to OPO, on June 2nd, 2024 at 03:00AM ±2. The search will bring flight offers in Business or First class.</p>

<h4 id="-example-one-way-trip"><a name="example-one-way"></a> Example: One-way Trip</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/air-shop?departurelocation=48.85694273527786,2.3501079080340315&amp;departuredate=2024-06-01&amp;departuretime=02:00&amp;returnlocation=SDU
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departurelocation=48.85694273527786,2.3501079080340315&amp;departuredate=2024-06-01&amp;departuretime=02:00&amp;returnlocation=SDU
</code></pre></div></div>

<p>This deeplink will perform a search for a flight from LBG (airport in Paris) to SDU, on June 1st, 2024 with departure time at 02:00AM ±2.</p>
Expand All @@ -723,12 +721,12 @@ <h4 id="example-omitting-departure-or-return-location">Example: Omitting Departu
<p>In this example, we are considering that the user has defined <strong>LAX</strong> as their preferred airport.</p>

<p>On the deeplink below the user is omitting the desired <strong>departure location</strong>. Therefore, they will be taken to the search results page, showing departure flights from LAX (preferred airport) to BER. The next page will show return flights, from BER back to LAX.</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/air-shop?departuredate=2024-06-01&amp;returnlocation=BER&amp;returndate=2024-06-02
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departuredate=2024-06-01&amp;returnlocation=BER&amp;returndate=2024-06-02
</code></pre></div></div>

<p>In this next example the user omitted <code class="language-plaintext highlighter-rouge">returnlocation</code>. This will result in a search for a flight from LBG (airport in Paris) to LAX.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/air-shop?departurelocation=48.85694273527786,2.3501079080340315&amp;departuredate=2024-06-01
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/air-shop?departurelocation=48.85694273527786,2.3501079080340315&amp;departuredate=2024-06-01
</code></pre></div></div>

<h2 id="car-search">Car Search</h2>
Expand All @@ -737,11 +735,11 @@ <h2 id="car-search">Car Search</h2>

<h4 id="uri-template-1">URI Template</h4>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://{environment}.concursolutions.com/goto/car-shop?pickuplocation={pickuplocation}&amp;pickupdate={pickupdate}&amp;pickuptime={pickuptime}&amp;dropofflocation={dropofflocation}&amp;dropoffdate={dropoffdate}&amp;dropofftime={dropofftime}
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/car-shop?pickuplocation={pickuplocation}&amp;pickupdate={pickupdate}&amp;pickuptime={pickuptime}&amp;dropofflocation={dropofflocation}&amp;dropoffdate={dropoffdate}&amp;dropofftime={dropofftime}
</code></pre></div></div>

<h4 id="example-of-usage-2">Example of Usage</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/car-shop?pickuplocation=48.85694273527786,2.3501079080340315&amp;pickupdate=2024-06-01&amp;pickuptime=12:00&amp;dropofflocation=50.035467,8.562884&amp;dropoffdate=2024-06-02&amp;dropofftime=18:00
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/car-shop?pickuplocation=48.85694273527786,2.3501079080340315&amp;pickupdate=2024-06-01&amp;pickuptime=12:00&amp;dropofflocation=50.035467,8.562884&amp;dropoffdate=2024-06-02&amp;dropofftime=18:00
</code></pre></div></div>

<h4 id="query-parameters-2">Query Parameters</h4>
Expand Down Expand Up @@ -810,11 +808,11 @@ <h2 id="hotel-search">Hotel Search</h2>

<h4 id="uri-template-2">URI Template</h4>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://{environment}.concursolutions.com/goto/hotel-shop?checkindate={checkindate}&amp;checkoutdate={checkoutdate}&amp;location={location}&amp;distance={distance}&amp;unit={unit}
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/hotel-shop?checkindate={checkindate}&amp;checkoutdate={checkoutdate}&amp;location={location}&amp;distance={distance}&amp;unit={unit}
</code></pre></div></div>

<h4 id="example-of-usage-3">Example of Usage</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/hotel-shop?checkindate=2024-08-01&amp;checkoutdate=2024-08-02&amp;location=50.050686,8.565997&amp;distance=15&amp;unit=mi
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/hotel-shop?checkindate=2024-08-01&amp;checkoutdate=2024-08-02&amp;location=50.050686,8.565997&amp;distance=15&amp;unit=mi
</code></pre></div></div>

<h4 id="query-parameters-3">Query Parameters</h4>
Expand Down Expand Up @@ -880,13 +878,13 @@ <h4 id="query-parameters-3">Query Parameters</h4>
</ul>

<h4 id="-example-hotel-property-id-location"><a name="example-one-way"></a> Example: Hotel Property ID location</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/hotel-shop?checkindate=2024-11-02&amp;checkoutdate=2024-11-03&amp;location=708752&amp;locationsource=hrs
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/hotel-shop?checkindate=2024-11-02&amp;checkoutdate=2024-11-03&amp;location=708752&amp;locationsource=hrs
</code></pre></div></div>

<p>This deeplink will perform a search for the hotel Travelodge LAX South in El Segundo (CA) and hotels nearby in the 5 mi default radius, with check-in date on November 2nd, 2024 and checkout date on November 3rd, 2024. It uses the Hotel Property ID from HRS as location.</p>

<h4 id="-example-concur-travel-internal-hotel-id-location"><a name="example-one-way"></a> Example: Concur Travel Internal Hotel ID location</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/hotel-shop?checkindate=2024-11-02&amp;checkoutdate=2024-11-03&amp;location=1907825ad1f728ccafb22942d61a2715
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/hotel-shop?checkindate=2024-11-02&amp;checkoutdate=2024-11-03&amp;location=1907825ad1f728ccafb22942d61a2715
</code></pre></div></div>

<p>This deeplink will perform a search for the hotel Econo Lodge Inn &amp; Suites in Arkansas and hotels nearby in the 5 mi default radius, with check-in date on November 2nd, 2024 and checkout date on November 3rd, 2024. It uses a Concur Travel Internal Hotel ID as location.</p>
Expand All @@ -897,11 +895,11 @@ <h2 id="train-search">Train Search</h2>

<h4 id="uri-template-3">URI Template</h4>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://{environment}.concursolutions.com/goto/rail-shop?departurelocation={departurelocation}&amp;departuredate={departuredate}&amp;departuretime={departuretime}&amp;returnlocation={returnlocation}&amp;returndate={returndate}&amp;returntime={returntime}
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/rail-shop?departurelocation={departurelocation}&amp;departuredate={departuredate}&amp;departuretime={departuretime}&amp;returnlocation={returnlocation}&amp;returndate={returndate}&amp;returntime={returntime}
</code></pre></div></div>

<h4 id="example-of-usage-4">Example of Usage</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/rail-shop?departuredate=2024-06-12&amp;departuretime=15:00&amp;returndate=2024-06-13&amp;returntime=07:00&amp;departurelocation=41.378696,2.140457&amp;returnlocation=41.380057,2.138956
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/rail-shop?departuredate=2024-06-12&amp;departuretime=15:00&amp;returndate=2024-06-13&amp;returntime=07:00&amp;departurelocation=41.378696,2.140457&amp;returnlocation=41.380057,2.138956
</code></pre></div></div>

<h4 id="query-parameters-4">Query Parameters</h4>
Expand Down Expand Up @@ -1029,7 +1027,7 @@ <h2 id="itinerary-1">Itinerary</h2>

<h4 id="uri-template-4">URI Template</h4>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://{environment}.concursolutions.com/goto/trip/{tripID}
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/trip/{tripID}
</code></pre></div></div>

<table>
Expand All @@ -1042,12 +1040,6 @@ <h4 id="uri-template-4">URI Template</h4>
</tr>
</thead>
<tbody>
<tr>
<td><code class="language-plaintext highlighter-rouge">environment</code></td>
<td><code class="language-plaintext highlighter-rouge">string</code></td>
<td>-</td>
<td><strong>Required</strong> <br />Specifies the environment, for example, ‘US2’ or ‘EU2’.</td>
</tr>
<tr>
<td><code class="language-plaintext highlighter-rouge">tripID</code></td>
<td><code class="language-plaintext highlighter-rouge">string</code></td>
Expand All @@ -1060,7 +1052,7 @@ <h4 id="uri-template-4">URI Template</h4>
<p>This deeplink URL facilitates accessing detailed trip information in SAP Concur solutions through either SSO or username/password authentication when launched from third-party applications, seamlessly redirecting users to the corresponding itinerary.</p>

<h4 id="example">Example:</h4>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://eu2.concursolutions.com/goto/trip/779a324d-6e1d-4fe8-8f98-9362be994766
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.concursolutions.com/goto/trip/779a324d-6e1d-4fe8-8f98-9362be994766
</code></pre></div></div>

</div>
Expand Down
4 changes: 2 additions & 2 deletions feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<description>Concur docs provides comprehensive information on working with the Concur platform</description>
<link>https://preview.developer.concur.com/</link>
<atom:link href="https://preview.developer.concur.com/feed.xml" rel="self" type="application/rss+xml" />
<pubDate>Thu, 03 Oct 2024 18:57:49 +0000</pubDate>
<lastBuildDate>Thu, 03 Oct 2024 18:57:49 +0000</lastBuildDate>
<pubDate>Wed, 09 Oct 2024 16:08:27 +0000</pubDate>
<lastBuildDate>Wed, 09 Oct 2024 16:08:27 +0000</lastBuildDate>
<generator>Jekyll v4.1.1</generator>

</channel>
Expand Down

0 comments on commit 2bb41c9

Please sign in to comment.