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": [
"8eacd0a5-86b3-49d8-92d0-7be58569305b",
"66f78c2f-5fad-4656-add1-96a935a0bfd4"
],
"destinations": [
"28cc008c-e257-4f20-bfae-666b9f6492af",
"3ea84c7c-443d-4788-8f25-c8758c733b73"
],
"pax": 1,
"price": 2,
"fr": "2026-09-19T09:22:17.2678104+00:00",
"to": "2026-09-19T09:22:17.2678104+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>8eacd0a5-86b3-49d8-92d0-7be58569305b</guid>
<guid>66f78c2f-5fad-4656-add1-96a935a0bfd4</guid>
</categories>
<destinations>
<guid>28cc008c-e257-4f20-bfae-666b9f6492af</guid>
<guid>3ea84c7c-443d-4788-8f25-c8758c733b73</guid>
</destinations>
<pax>1</pax>
<price>2</price>
<fr>2026-09-19T09:22:17.2678104+00:00</fr>
<to>2026-09-19T09:22:17.2678104+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.