Skip to main content

Property Features

Property Features

Return a list of Property Features for the hotel.

ParameterDescriptionType
CodeCode indicating the property featureString
DescriptionDescription of the property featureString
OtaCodeHAC OTA code indicating the property featureString
OtaDescriptionOTA description of the property featureString
OtaTypeHAC OTA code (HTA SynXis code) category typeString

 

Sample Request

Use include=Features to return a list of property features.

/v1/api/hotel/13098/details?primaryChannel=WEB&include=Features

Response (partial)

{
    "hotelList": [{
        "PropertyFeatures": [{
            "Code": "20514",
            "Description": "Car rental desk",
            "OtaCode": "15",
            "OtaType": "HTA",
            "OtaDescription": "Car rental desk"
        }, {
            "Code": "20760",
            "Description": "High speed wireless",
            "OtaCode": "261",
            "OtaType": "HTA",
            "OtaDescription": "High speed wireless"
        }, {
            "Code": "20679",
            "Description": "Additional services/amenities/facilities",
            "OtaCode": "180",
            "OtaType": "HTA",
            "OtaDescription": "Additional services/amenities/facilities on property"
        }, {
            "Code": "20726",
            "Description": "Complimentary breakfast",
            "OtaCode": "227",
            "OtaType": "HTA",
            "OtaDescription": "Complimentary breakfast"
        }]
    }]
}

 

Return Property Feature Description in a specified language.

Note: Use Accept-Language to return language specific content.

Response (partial)

{
    "hotelList": [{
        "PropertyFeatures": [{
            "Code": "20514",
            "Description": "Bureau de location de voitures",
            "OtaCode": "15",
            "OtaType": "HTA",
            "OtaDescription": "Car rental desk"
        }, {
            "Code": "20760",
            "Description": "Sans fil haute vitesse",
            "OtaCode": "261",
            "OtaType": "HTA",
            "OtaDescription": "High speed wireless"
        }, {
            "Code": "20679",
            "Description": "Services / équipements",
            "OtaCode": "180",
            "OtaType": "HTA",
            "OtaDescription": "Additional services/amenities/facilities on property"
        }, {
            "Code": "20726",
            "Description": "Petit-déjeuner gratuit",
            "OtaCode": "227",
            "OtaType": "HTA",
            "OtaDescription": "Complimentary breakfast"
        }]
    }]
}