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": [
"d67180d2-f6d4-48c1-87d5-975dbf9a1292",
"a83deb0e-666a-4d16-8e87-6cfc8250059d"
],
"destinations": [
"bd0b7454-9f08-423a-b985-66d15ccc39ed",
"db34b075-8c77-45f2-8e61-20d3ddd65c95"
],
"pax": 1,
"price": 2,
"fr": "2026-04-14T06:58:59.6907508+00:00",
"to": "2026-04-14T06:58:59.6907508+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>d67180d2-f6d4-48c1-87d5-975dbf9a1292</guid>
<guid>a83deb0e-666a-4d16-8e87-6cfc8250059d</guid>
</categories>
<destinations>
<guid>bd0b7454-9f08-423a-b985-66d15ccc39ed</guid>
<guid>db34b075-8c77-45f2-8e61-20d3ddd65c95</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-04-14T06:58:59.6907508+00:00</fr>
<to>2026-04-14T06:58:59.6907508+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.