Get Hotel Details
Note:
Few attributes in below sample response are supplier specific, hence there can be possibility these attributes will not appear in the response. We recommend you to parse these fields as mentioned in the sample responses.
- This service method is used to request for Hotel static/descriptive information (hotel details) based
sessionID, searchKey and hotelKey
. - Hotel Detail Response consist of the Hotel description, location, hotel images, facilities and other basic details of the hotel.
Hotel Detail Request
Tags | Attribute | Description |
---|---|---|
HotelDetailsCriteria | (JsonObject) | |
hotelKey* (String) |
Unique Key for each Hotel. This should be taken from Hotel search response | |
searchKey* (String) |
Unique Key for the search | |
culture* (String) |
en | |
hotel detail request | |
---|---|
Hotel Detail Response
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | searchKey* (String) |
This attribute contains a unique search key. |
culture* (String) |
String | |
data | hotelKey* (String) |
This attribute contains a unique hotel id. |
data | name* (String) |
Hotel Name |
data | description (String) |
Hotel Description |
data | starRating (String) |
Hotel Star rating |
data | address (String) |
Hotel Address |
data | postalCode (String) |
Hotel postal code |
data | city* (String) |
Hotel city |
data | country* (String) |
Hotel country |
data | latitude (String) |
Hotel latitude value |
data | longitude (String) |
Hotel longitude value |
data | location (String) |
Hotel location |
data | locationDesc (String) |
Hotel location description |
data | map (String) |
Hotel map |
data | phoneNumber (String) |
Hotel phone number |
data | email (String) |
Hotel email |
data | website (String) |
Hotel website url |
data | checkInTime (DateTime) |
Hotel room check-in Time |
data | checkOutTime (DateTime) |
Hotel room check-out Time |
data | childPolicy (String) |
Hotel child policy |
data | currency (String) |
Selling currency of room price |
data | userRating (String) |
Hotel user rating |
roomFacilities | (JsonArray) | List of room facilities |
roomFacility | (JsonObject) | |
roomFacility | type (String) |
Room facility type EG:services Not released yet |
roomFacility | name (String) |
Room facility name |
roomFacility | description (String) |
Room facility description Not released yet |
hotelFacilities | (JsonArray) | List of hotel facilities |
hotelFacility | (JsonObject) | |
hotelFacility | type (String) |
Hotel facility type |
hotelFacility | name (String) |
Hotel facility name |
hotelFacility | description (String) |
Hotel facility description Not released yet |
nearbyAreas | (JsonArray) | List of near by areas |
nearbyArea | (JsonObject) | |
nearbyArea | name (JsonObject) |
Name of nearby area |
nearbyArea | distance (String) |
distance from hotel Not released yet |
nearbyArea | description (String) |
Description of the nearby area Not released yet |
userReviews | (JsonArray) | List of User ratings |
userReview | (JsonObject) | |
userReview | userRating (String) |
User rating |
userReview | firstName (String) |
User first name |
userReview | lastName (String) |
User last name |
userReview | description (String) |
User rating description |
images | (JsonArray) | List of Images |
image | (JsonObject) | |
image | path (String) |
image url |
image | order (Integer) |
image order |
image | type (String) |
image type |
image | description (String) |
image description |
hotel detail response | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|