[1.0.5] - 2024-09-04
### Changed
- GET /v1/hotels/{id}/products/accommodations : new roomClass information
Example:
{
"accommodations": [
{
"id": "DBC",
"label": "Classic room with 1 double bed",
"roomClass": {
"code": "0IR"
}
},
{
"id": "ROH",
"label": "Classic room with 1 double or 2 single beds",
"roomClass": {
"code": "0IR"
}
}
]
}
[1.0.4] - 2024-07-09
### Changed
- GET /v1/hotels/{id}/products/accommodations : new b2b category information
Example:
{
"accommodations": [
{
"id": "DBC",
"label": "Chambre Classique - 1 lit double",
"b2b": {
"category": {
"code": "STND",
"label": "Standard"
}
}
},
{
"id": "TWC",
"label": "Chambre Classique - 2 lits simples"
},
{
"id": "KGB",
"label": "Chambre Privilège - 1 lit double et 1 canapé-lit 1 personne",
"b2b": {
"category": {
"code": "SUP",
"label": "Superior"
}
}
}
]
}
[1.0.3] - 2023-06-07
### Changed
- GET /v1/hotels/{id}/products/accommodations : new flag to indicate if smooking is allowed in the accommodation
Example:
{
"accommodations": [
{
"id": "QED",
"label": "Classic room - Queen size bed",
"classification": {
"type": "ROOM",
"standard": "STANDARD"
},
"smokingRoom": true
},
{
"id": "TWD",
"label": "Classic Room - Twin with 2 single beds",
"classification": {
"type": "ROOM",
"standard": "STANDARD"
},
"smokingRoom": true
}
]
}
[1.0.2] - 2023-11-21
### Changed
- GET /v1/hotels/{id}/products/accommodations : new setup object to describe bath & shower if available in the BATHROOM amenities
Example:
{
"amenities": [
{
"name": "BATHROOM",
"label": "Bathroom",
"setup": [
{
"code": "SHOWER",
"label": "Douche",
"details": [
{
"code": "SHOHYD",
"label": "Hydro-massage shower"
},
{
"code": "SHOEXP",
"label": "Rainfall shower experience"
},
{
"code": "BATHIT",
"label": "Walk-in shower"
}
]
},
{
"code": "BATHUB",
"label":"Bath",
"details": [
{
"code": "BATHTUB_DESC002",
"label": "Oversized bathtub"
},
{
"code": "JACCUZ",
"label": "Whirlpool bath"
},
{
"code": "BATHYD",
"label": "Hydrotherapy bathtub"
}
]
}
],
"facilities": [
{
"name": "BATHROOM_FACILITIES",
"label": "Bathroom Facilities",
"items": [
{
"code": "accessiblebathroombath",
"name": "Accessible bathroom",
"paying": false
},
{
"code": "BCAI2",
"name": "Toilet seat 17”-19” above floor",
"paying": false
}
]
}
]
}
]
}
[1.0.1] - 2023-10-25
### Changed
- GET /v1/hotels/{id}/products/accommodations : information related to the available floors in which the accommodation is available
Example:
{
"situation": {
"accessibility": true,
"availableFloors": [
{
"code": "LOW_FLOOR",
"label": "Low floor"
},
{
"code": "HIGH_FLOOR",
"label": "High floor"
}
],
"views": []
}
}