Breadcrumb
- Hotel Content
- Hotel Content
- Use Cases
- Property Features
Property Features
Property Features
Return a list of Property Features for the hotel.
Parameter | Description | Type |
---|---|---|
Code | Code indicating the property feature | String |
Description | Description of the property feature | String |
OtaCode | HAC OTA code indicating the property feature | String |
OtaDescription | OTA description of the property feature | String |
OtaType | HAC OTA code (HTA SynXis code) category type | String |
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"
}]
}]
}