Skip to main content

Hotel Content

Commerce
Hotel Descriptive Content
Shopping
Hotels
Descriptions
REST API
Booking Solutions

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.


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:

OperationEndpointDescription
GET/v1/api/hotel/listReturns static descriptive content for one or more hotels
GET/v1/api/hotel/{id}/detailsReturns 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 
        } 
      ], 
...