10.38 | March 19, 2026
Corrected YAML to show that the id query parameter is not required
Read more
Corrected YAML to show that the id query parameter is not required (DE322876)
The YAML file for this API was corrected to show that the id query parameter is optional, not required, for the GET /hotel/list endpoint.
10.36 | August 07, 2025
Enhanced by the following: Chargeable/Non-Chargeable Meal Plans.
Read more
Chargeable/Non-Chargeable Meal Plans (FEA98435)
Hotel Content API will include a new attribute AvailableToAnyGuest within MealPlanList that will contain a value of true or false. This will only be returned in the response when the request parameter include contains the value MealPlans.
This change applies to the following operations:
| Operation | Endpoint | Description |
|---|---|---|
| GET | /v1/api/hotel/list | Returns static descriptive content for one or more hotels |
| GET | /v1/api/hotel/{id}/details | Returns selected static descriptive content for one hotel |
The following is a partial response with the MealPlanList with the new AvailableToAnyGuest attribute:
...
"MealPlanList": [
{
"Name": "NonCharge Brkfst",
"Chargeable": false,
"Type": "Breakfast",
"Description": "Free to consortia customers",
"AvailableToAnyGuest": false
},
{
"Name": "Chargeable Brkfst",
"Chargeable": true,
"Type": "Breakfast",
"Description": "Breakfast for all",
"AvailableToAnyGuest": true
}
],
...