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": [
"f026606c-7c64-4a34-baa1-d803c8143b52",
"5b0b74fe-87ed-4645-8b7f-184d2e0d9a9c"
],
"destinations": [
"ad372b74-feac-4b5c-8f8f-d1fd5935a623",
"58270d4f-e4ff-4913-8b16-f77e9ae3dfe3"
],
"pax": 1,
"price": 2,
"fr": "2026-03-21T21:09:53.4299559+00:00",
"to": "2026-03-21T21:09:53.4299559+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>f026606c-7c64-4a34-baa1-d803c8143b52</guid>
<guid>5b0b74fe-87ed-4645-8b7f-184d2e0d9a9c</guid>
</categories>
<destinations>
<guid>ad372b74-feac-4b5c-8f8f-d1fd5935a623</guid>
<guid>58270d4f-e4ff-4913-8b16-f77e9ae3dfe3</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-03-21T21:09:53.4299559+00:00</fr>
<to>2026-03-21T21:09:53.4299559+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.