Changes History
[1.0.6] - 2024-07-23
### Changed
- GET /v1/hotels & GET /v1/hotels/{id} :
- New hotel label:
- IDHAB
- New hotel label:
Example:
{
"id": "0470",
"name": "Novotel Manaus",
"label": [
"FASTCOM",
"DINING_SPA_WITH_STAY",
"IDHAB"
]
}
[1.0.5] - 2024-03-12
### Changed
- GET /v1/hotels & GET /v1/hotels/{id} :
- New hotel label:
- HUAZHU
- New hotel label:
[1.0.4] - 2024-02-20
### Changed
- GET /v1/hotels & GET /v1/hotels/{id} :
- New hotel attributes :
- customerRequestAccepted
- indicator to know if the hotel accepts or not customer request
- geo object
- geomaj code of the city of the hotel
- customerRequestAccepted
- New hotel attributes :
Example:
{
"hotel": {
"id": "0785",
"localization": {
"geo": {
"code": "V2996",
"type": "VI"
}
},
"customerRequestAccepted": true
}
}
[1.0.2] - 2024-02-07
### Changed
- GET /v1/hotels & GET /v1/hotels/{id} :
- New hotel label value added for COMPLIMENTARY_BREAKFAST hotel program
Example:
{
"id": "5309",
"name": "AHREC Pullman London St Pancras (previously Novotel)",
"label": [
"COMPLIMENTARY_BREAKFAST",
"PROGRAM_PREFERENCES",
"BOOKING_LEISURE_ON_LINE",
"HAOKE",
"EXTENDED_STAY",
"ASFST",
"ALL_SAFE",
"PLANET_21_PLATINIUM",
"BEST_PRICE_GUARANTEE",
"SPA",
"THALASSO",
"TRIPADVISOR_CERTIFIED",
"ISO_9001",
"RESORT",
"MEMORABLE_MOMENT",
"FLY_AND_STAY"
]
}
[1.0.1] - 2024-01-03
### Changed
- GET /v1/hotels & GET /v1/hotels/{id} :
- eco_certfied value added to amenity[] when a hotel has at least one valid eco certification
- environement.ecocertification[] array added to show all hotels' eco certification with various information such as status, name and multiple dates
- removal of PLANET_21 information:
- Amenity : planet_21
- hotel labels :
- PLANET_21_BRONZE
- PLANET_21_SILVER
- PLANET_21_GOLD
- PLANET_21_PLATINIUM
Example:
{
"id": "1300",
"name": "Le Louis Versailles Château Hotel-MGallery",
"environment": {
"ecoCertifications": [
{
"name": {
"code": "GK",
"label": "Green Key"
},
"status": {
"code": "CERT",
"label": "Certified"
},
"registrationDate": "2023-11-21",
"paymentDate": "2023-11-21",
"expiryDate": "2024-11-21",
"awardDate": "2023-11-21"
},
{
"name": {
"code": "GG",
"label": "Green Globe"
},
"status": {
"code": "REG",
"label": "Registered"
},
"registrationDate": "2023-10-02",
"paymentDate": "2023-10-02",
"expiryDate": "2024-10-01",
"awardDate": "2023-10-10"
},
{
"name": {
"code": "GK",
"label": "Green Key"
},
"status": {
"code": "REG",
"label": "Registered"
},
"registrationDate": "2023-12-29",
"paymentDate": "2023-12-29",
"expiryDate": "2023-12-29",
"awardDate": "2023-12-29"
}
]
},
"amenity": {
"free": [
"air_conditioning",
"baby_sitting",
"bar",
"breakfast",
"child_facilities",
"coffee_machine",
"fitness",
"golf",
"iron",
"meeting_rooms",
"non_smoking",
"privative_bathroom",
"restaurant",
"spa",
"tea_machine",
"tennis",
"wheelchair_access",
"wifi",
"eco_certified",
"sauna",
"laundry"
],
"paying": [
"pet",
"parking"
]
}
}