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": [
"e518e523-fd18-4c47-a1a5-38437e653b45",
"04dca78d-917f-41ac-b2c6-75d70b5adc8d"
],
"destinations": [
"eae4c4ec-6b08-4e59-a248-4bce73369261",
"aa5911c7-9637-440f-8f7d-50cf7a4dac2e"
],
"pax": 1,
"price": 2,
"fr": "2026-08-03T01:46:26.3894781+00:00",
"to": "2026-08-03T01:46:26.3894781+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>e518e523-fd18-4c47-a1a5-38437e653b45</guid>
<guid>04dca78d-917f-41ac-b2c6-75d70b5adc8d</guid>
</categories>
<destinations>
<guid>eae4c4ec-6b08-4e59-a248-4bce73369261</guid>
<guid>aa5911c7-9637-440f-8f7d-50cf7a4dac2e</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-08-03T01:46:26.3894781+00:00</fr>
<to>2026-08-03T01:46:26.3894781+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.