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": [
"2b3ad4bb-4b76-42ad-92d8-0900b7197d50",
"ac5b9c83-203b-4447-ad7e-39e43504a22d"
],
"destinations": [
"63ec5c51-9ed1-45c5-8b28-a3b2bcea1682",
"cdc344a8-3040-41d7-8fad-5aeb097f7f61"
],
"pax": 1,
"price": 2,
"fr": "2026-02-04T02:21:56.2387697+00:00",
"to": "2026-02-04T02:21:56.2387697+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>2b3ad4bb-4b76-42ad-92d8-0900b7197d50</guid>
<guid>ac5b9c83-203b-4447-ad7e-39e43504a22d</guid>
</categories>
<destinations>
<guid>63ec5c51-9ed1-45c5-8b28-a3b2bcea1682</guid>
<guid>cdc344a8-3040-41d7-8fad-5aeb097f7f61</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-02-04T02:21:56.2387697+00:00</fr>
<to>2026-02-04T02:21:56.2387697+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.