GET api/Hotel/GetHotelLobbyInfo?hotelId={hotelId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| hotelId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
HotelLobby| Name | Description | Type | Additional information |
|---|---|---|---|
| Lng | decimal number |
None. |
|
| Lat | decimal number |
None. |
|
| Address | string |
None. |
|
| HotelName | string |
None. |
|
| LobbyDescription | string |
None. |
|
| LobbyTel | string |
None. |
|
| LobbyDetails | string |
None. |
|
| LobbyImage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Lng": 1.1,
"Lat": 2.1,
"Address": "sample string 3",
"HotelName": "sample string 4",
"LobbyDescription": "sample string 5",
"LobbyTel": "sample string 6",
"LobbyDetails": "sample string 7",
"LobbyImage": "sample string 8"
}
application/xml, text/xml
Sample:
<HotelController.HotelLobby xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.Hotel.Controllers"> <Address>sample string 3</Address> <HotelName>sample string 4</HotelName> <Lat>2.1</Lat> <Lng>1.1</Lng> <LobbyDescription>sample string 5</LobbyDescription> <LobbyDetails>sample string 7</LobbyDetails> <LobbyImage>sample string 8</LobbyImage> <LobbyTel>sample string 6</LobbyTel> </HotelController.HotelLobby>