Wiki source code of Hotels

Version 1.1 by Giorgi Mdivnishvili on 2024/02/26 15:05

Show last authors
1 **https:~/~/restapi.rustaronline.com/v1.01/api/hotels**
2
3 Method: GET
4
5 Parameters to pass: agentid and agentpassword
6
7 Sample URL: **https:~/~/restapi.rustaronline.com/v1.01/api/hotels?agentid=test.test&agentpassword=TestP@ssw0rd**
8
9
10 The method returns the list of hotels with the statuses and timestamps of the prices
11
12 Return value example:
13
14 {
15
16 "Code": "00",
17
18 "Message": "",
19
20 "Timestamp": "2016-06-27T19:20:00.7512185+04:00",
21
22 "Version": “1.01”,
23
24 "ResponseID": "b512a117-6745-493d-9fa4-828d79c0df1d",
25
26 "Data": [
27
28 {
29
30 "hotelid": "d6f9299f-5d94-4955-85e7-003e0383023c",
31
32 "hotelname": "Summer Land Motel - Sharjah",
33
34 "pricestatus": "ready",
35
36 "cityid": "f78ac3bc-f040-46d0-8319-2c52083080a6",
37
38 "cityname": "Sharjah",
39
40 "districtid": "7ac1bbc8-59ea-4977-b272-ed8553f94f9b",
41
42 "districtname": "Sharjah",
43
44 "hasalcohol": false,
45
46 "hasfreewifi": true,
47
48 "hasmall": false,
49
50 "hasmetro": false,
51
52 "haspool": true,
53
54 "hotelclass": "~*~**",
55
56 "hoteltype": "City",
57
58 "popular": false,
59
60 "recommended": false,
61
62 "priceupdated": "2016-04-24T11:12:09.66",
63
64 "note": "Check-in time is 14:00 hrs, Check-out time is 12:00 hrs\r\n\r\n\r\nHotel guests can  access the pool and beach of Beach Hotel Sharjah hotel - AED 20.00 ($5.50) for 1 person a day.          \r\nHotel guests can access the pool and beach of Sharjah Carlton Hotel hotel - AED 20.00 ($5.50) for 1 person a day.          \r\nHotel guests can  access the pool and beach of Golden Beach Motel hotel - AED 15.00 ($4.10) for 1 person a day.          \r\nThe hotel provides a group transfer to Dubai (Naser Square).\r\n\r\n\r\n",
65
66 "imageurl": "https:~/~/www.rustaronline.com/images/pages/hotels/thumbnail/F2EB7838-B479-4A81-BE9A-8113E06C70B5.jpg"
67
68 },
69
70 {
71
72 "hotelid": "60d6bb96-a8ba-4c14-908e-7a9227c34bf3",
73
74 "hotelname": "Burj Al Arab",
75
76 "pricestatus": "ready",
77
78 "cityid": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
79
80 "cityname": "Dubai",
81
82 "districtid": "e6f59e6e-4747-4c14-9b6b-a709cce36c33",
83
84 "districtname": "Jumeirah",
85
86 "hasalcohol": true,
87
88 "hasfreewifi": true,
89
90 "hasmall": false,
91
92 "hasmetro": false,
93
94 "haspool": true,
95
96 "hotelclass": "~*~*~*~**",
97
98 "hoteltype": "Beach",
99
100 "popular": false,
101
102 "recommended": false,
103
104 "priceupdated": "2016-06-19T14:17:39.65",
105
106 "note": null,
107
108 "imageurl": ""
109
110 }
111
112 ]
113
114 }
115
116
117
118
119 **hotelid:**              GUID of the hotel in the database of Rustar. This GUID will be used to retrieve additional information (like prices) about the hotel
120
121 **hotelname:**        string. Name of the hotel
122
123 **pricestatus:**       string. "ready" or "pending". “ready” means that prices are ready to be downloaded. “pending” means that price registration is under processing and not all prices are available for the hotel. In case of “pending” the prices should be downloaded later when the status is changed to “ready”.
124
125 **cityid:**                GUID of the City where the hotel is located.
126
127 **cityname:**          string. Name of the city
128
129 **districtid:**          GUID of the district, where the hotel is located
130
131 **districtname: ** string. Name of the district
132
133 **hasalcohol:**        Boolean parameter. Describes whether hotel serves alcohol or not
134
135 **hasfreewifi:**       Boolean parameter. Describes whether free wifi is available in the rooms
136
137 **hasmall:**            Boolean parameter. Describes whether there is a shopping mall near the hotel
138
139 **hasmetro:**          Boolean parameter. Describes whether there is a metro station near the hotel
140
141 **haspool:**            Boolean parameter. Describes whether there is swimming pool in the hotel
142
143 **hotelclass:**         string. “*”,”~*~*”,”~*~**”,”~*~*~*~*”,”~*~*~*~**” or ”Apartments”. Number of stars or Apartment hotel
144
145 **hoteltype:**          string. "City" or “Beach”. Describes whether this hotel is located in the city or at the beach
146
147 **popular:**            Boolean. Describes if the hotel was popular last 7 days
148
149 **recommended:**   Boolean. True if the hotel is recommended by Rustar
150
151 **priceupdated:**    DateTime of the last price update
152
153 **note:**                  string. Free formed text
154
155 **imageurl:**           string. Optional. Points the URL for the image of the hotel if any.
156
157