POST Hotel/AllCountryAllCity5
Request Information
URI Parameters
None.
Body Parameters
HotelAllCountryAllCityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| userID |
user API |
string |
None. |
| accessToken |
access code getting from login |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userID": "sample string 1",
"accessToken": "sample string 2"
}
application/xml, text/xml
Sample:
<HotelAllCountryAllCityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models"> <accessToken>sample string 2</accessToken> <userID>sample string 1</userID> </HotelAllCountryAllCityRequest>
Response Information
Resource Description
HotelAllCountryAllCityResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| countries | Collection of HotelAllCountryAllCityModel |
None. |
|
| respTime |
describe time in sending response |
date |
None. |
| userID |
user ID to access API |
string |
None. |
| accessToken |
access token that needed to access API |
string |
None. |
| status |
SUCCESS or FAILED |
string |
None. |
| respMessage |
detail message of response status |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"countries": [
{
"Name": "sample string 1",
"ID": "sample string 2",
"cities": [
{
"Name": "sample string 1",
"ID": "sample string 2",
"CountryID": "sample string 3"
},
{
"Name": "sample string 1",
"ID": "sample string 2",
"CountryID": "sample string 3"
}
]
},
{
"Name": "sample string 1",
"ID": "sample string 2",
"cities": [
{
"Name": "sample string 1",
"ID": "sample string 2",
"CountryID": "sample string 3"
},
{
"Name": "sample string 1",
"ID": "sample string 2",
"CountryID": "sample string 3"
}
]
}
],
"respTime": "2025-10-28T14:45:21.5594504+07:00",
"userID": "sample string 2",
"accessToken": "sample string 3",
"status": "sample string 4",
"respMessage": "sample string 5"
}
application/xml, text/xml
Sample:
<HotelAllCountryAllCityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models">
<accessToken>sample string 3</accessToken>
<respMessage>sample string 5</respMessage>
<respTime>2025-10-28T14:45:21.5594504+07:00</respTime>
<status>sample string 4</status>
<userID>sample string 2</userID>
<countries>
<HotelAllCountryAllCityModel>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
<cities>
<HotelCityModel>
<CountryID>sample string 3</CountryID>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
</HotelCityModel>
<HotelCityModel>
<CountryID>sample string 3</CountryID>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
</HotelCityModel>
</cities>
</HotelAllCountryAllCityModel>
<HotelAllCountryAllCityModel>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
<cities>
<HotelCityModel>
<CountryID>sample string 3</CountryID>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
</HotelCityModel>
<HotelCityModel>
<CountryID>sample string 3</CountryID>
<ID>sample string 2</ID>
<Name>sample string 1</Name>
</HotelCityModel>
</cities>
</HotelAllCountryAllCityModel>
</countries>
</HotelAllCountryAllCityResponse>