Wiki source code of 1. Hotels

Version 11.1 by Giorgi Mdivnishvili on 2024/02/26 17:57

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2
3
4 {{toc/}}
5 {{/box}}
6
7 = Method Description =
8
9 **GetDestinationCountries **method is used to get all destination countries list, which is provided by Nugios.
10
11
12 == Endpoint URL - [Method - GET] ==
13
14 {{info}}
15 [[https:~~/~~/restapi.rustaronline.com/v1.01/api/hotels>>https://restapi.rustaronline.com/v1.01/api/hotels]]
16 {{/info}}
17
18
19 == Request Parameters ==
20
21 (% class="box infomessage" %)
22 (((
23 |**Key**|**Value**|**Request URL**
24 |agentid|test.test|[[https:~~/~~/restapi.rustaronline.com/v1.01/api/hotels?agentid=test.test&agentpassword=TestP@ssw0rd>>https://restapi.rustaronline.com/v1.01/api/hotels?agentid=test.test&agentpassword=TestP@ssw0rd]]
25 |agentpassword|[[TestP@ssw0rd>>mailto:TestP@ssw0rd]]|[[https:~~/~~/restapi.rustaronline.com/v1.01/api/hotels?agentid=test.test&agentpassword=TestP@ssw0rd>>https://restapi.rustaronline.com/v1.01/api/hotels?agentid=test.test&agentpassword=TestP@ssw0rd]]
26 )))
27
28 Parameters to pass: agentid and agentpassword
29
30 The method returns the list of hotels with the statuses and timestamps of the prices
31
32
33 Return value example:
34
35 == Response Body ==
36
37 {{code language="json"}}
38 {
39 "Code": "00",
40 "Message": "",
41 "Timestamp": "2016-06-27T19:20:00.7512185+04:00",
42 "Version": “1.01”,
43 "ResponseID": "b512a117-6745-493d-9fa4-828d79c0df1d",
44 "Data": [
45 {
46 "hotelid": "d6f9299f-5d94-4955-85e7-003e0383023c",
47 "hotelname": "Summer Land Motel - Sharjah",
48 "pricestatus": "ready",
49 "cityid": "f78ac3bc-f040-46d0-8319-2c52083080a6",
50 "cityname": "Sharjah",
51 "districtid": "7ac1bbc8-59ea-4977-b272-ed8553f94f9b",
52 "districtname": "Sharjah",
53 "hasalcohol": false,
54 "hasfreewifi": true,
55 "hasmall": false,
56 "hasmetro": false,
57 "haspool": true,
58 "hotelclass": "***",
59 "hoteltype": "City",
60 "popular": false,
61 "recommended": false,
62 "priceupdated": "2016-04-24T11:12:09.66",
63 "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",
64 "imageurl": "https://www.rustaronline.com/images/pages/hotels/thumbnail/F2EB7838-B479-4A81-BE9A-8113E06C70B5.jpg"
65 },
66 {
67 "hotelid": "60d6bb96-a8ba-4c14-908e-7a9227c34bf3",
68 "hotelname": "Burj Al Arab",
69 "pricestatus": "ready",
70 "cityid": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
71 "cityname": "Dubai",
72 "districtid": "e6f59e6e-4747-4c14-9b6b-a709cce36c33",
73 "districtname": "Jumeirah",
74 "hasalcohol": true,
75 "hasfreewifi": true,
76 "hasmall": false,
77 "hasmetro": false,
78 "haspool": true,
79 "hotelclass": "*****",
80 "hoteltype": "Beach",
81 "popular": false,
82 "recommended": false,
83 "priceupdated": "2016-06-19T14:17:39.65",
84 "note": null,
85 "imageurl": ""
86 }
87 ]
88 }
89
90
91 {{/code}}
92
93
94 === ===
95
96 == Definitions ==
97
98 |**hotelid**| GUID of the hotel in the database of Rustar. This GUID will be used to retrieve additional information (like prices) about the hotel
99 |**hotelname**|String. Name of the hotel
100 |**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”.
101 |**cityid**|GUID of the City where the hotel is located.
102 |**cityname**|String. Name of the city
103 |**districtid**|GUID of the district, where the hotel is located
104 |**districtname**|String. Name of the district
105 |**hasalcohol**|Boolean parameter. Describes whether hotel serves alcohol or not
106 |**hasfreewifi**|Boolean parameter. Describes whether free wifi is available in the rooms
107 |**hasmall**|Boolean parameter. Describes whether there is a shopping mall near the hotel
108 |**hasmetro**| Boolean parameter. Describes whether there is a metro station near the hotel
109 |**haspool**| Boolean parameter. Describes whether there is swimming pool in the hotel
110 |**hotelclass**|string. “*”,”~*~*”,”~*~**”,”~*~*~*~*”,”~*~*~*~**” or ”Apartments”. Number of stars or Apartment hotel
111 |**hoteltype**|string. "City" or “Beach”. Describes whether this hotel is located in the city or at the beach
112 |**popular**|Boolean. Describes if the hotel was popular last 7 days
113 |**recommended**|Boolean. True if the hotel is recommended by Rustar
114 |**priceupdated**|DateTime of the last price update
115 |**note**|String. Free formed text
116 |**imageurl**|String. Optional. Points the URL for the image of the hotel if any.
117
118