POST api/Extreme/SearchTours
Request Information
URI Parameters
None.
Body Parameters
SearchRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| categories | Collection of globally unique identifier |
None. |
|
| destinations | Collection of globally unique identifier |
None. |
|
| pax | integer |
None. |
|
| price | integer |
None. |
|
| fr | date |
None. |
|
| to | date |
None. |
|
| currencyAbbr | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"categories": [
"7b13e9e1-0128-4b8c-a5db-a70954a8d66e",
"bfdf62ae-15cf-43a7-8059-b6e415bdfe53"
],
"destinations": [
"90e5e777-a2b4-4838-8453-4e5d5c7ea4ca",
"05574321-49bd-48d1-9f60-b06817161f14"
],
"pax": 1,
"price": 2,
"fr": "2026-06-20T17:48:17.9707874+00:00",
"to": "2026-06-20T17:48:17.9707874+00:00",
"currencyAbbr": "sample string 5"
}
application/xml, text/xml
Sample:
<SearchRequestModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<categories>
<guid>7b13e9e1-0128-4b8c-a5db-a70954a8d66e</guid>
<guid>bfdf62ae-15cf-43a7-8059-b6e415bdfe53</guid>
</categories>
<destinations>
<guid>90e5e777-a2b4-4838-8453-4e5d5c7ea4ca</guid>
<guid>05574321-49bd-48d1-9f60-b06817161f14</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-06-20T17:48:17.9707874+00:00</fr>
<to>2026-06-20T17:48:17.9707874+00:00</to>
<currencyAbbr>sample string 5</currencyAbbr>
</SearchRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of SearchResult| Name | Description | Type | Additional information |
|---|---|---|---|
| bokunTitle | string |
None. |
|
| dateTimeStart | date |
None. |
|
| startTimeStr | string |
None. |
|
| endTime | date |
None. |
|
| bokunAvailabilityCount | integer |
None. |
|
| pricePerAdult | decimal number |
None. |
|
| tourLinkPath | string |
None. |
|
| pictureLinkPath | string |
None. |
|
| destinations | Collection of string |
None. |
|
| categories | Collection of string |
None. |
|
| hitCounter | integer |
None. |
|
| text | string |
None. |
|
| externalId | string |
None. |
|
| importance | integer |
None. |
|
| currency | string |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.