@@ -122,6 +122,13 @@ method:
122122
123123 amadeus.get(' /v2/reference-data/urls/checkin-links' , airlineCode = ' BA' )
124124
125+ Or with ``POST `` using ``.client.post `` method:
126+
127+ .. code :: py
128+
129+ amadeus.post(' /v1/shopping/flight-offers/pricing' , data)
130+
131+
125132 Response
126133--------
127134
@@ -232,7 +239,7 @@ List of supported endpoints
232239 amadeus.travel.analytics.air_traffic.searched.get(originCityCode = ' MAD' , marketCountryCode = ' ES' , searchPeriod = ' 2017-08' )
233240 # How many people in Spain searched for a trip from Madrid to New-York in September 2017?
234241 amadeus.travel.analytics.air_traffic.searched_by_destination.get(originCityCode = ' MAD' , destinationCityCode = ' NYC' , marketCountryCode = ' ES' , searchPeriod = ' 2017-08' )
235-
242+
236243 # Flight Most Booked Destinations
237244 amadeus.travel.analytics.air_traffic.booked.get(originCityCode = ' MAD' , period = ' 2017-08' )
238245
@@ -249,7 +256,11 @@ List of supported endpoints
249256 amadeus.shopping.hotel_offers_by_hotel.get(hotelId = ' IALONCHO' )
250257 # Confirm the availability of a specific offer
251258 amadeus.shopping.hotel_offer(' D5BEE9D0D08B6678C2F5FAD910DC110BCDA187D21D4FCE68ED423426D0A246BB' ).get()
252-
259+
260+ # Hotel Ratings
261+ # What travelers think about this hotel?
262+ amadeus.e_reputation.hotel_sentiments.get(hotelIds = ' ADNYCCTB' )
263+
253264 # Point of Interest
254265 # What are the popular places in Barcelona (based a geo location and a radius)
255266 amadeus.reference_data.locations.points_of_interest.get(latitude = 41.397158 , longitude = 2.160873 )
0 commit comments