Hotel Facilities
All Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_ALL
All hotel facilities can be retrieved via this service endpoint.
Ski Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_SKI
This service returns hotel facilities in the SKI category
Thermal Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_THERMAL
This service returns hotel facilities in the THERMAL category
Facilities Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_FACILITIES
This service returns hotel facilities in the FACILITIES category
Food & Drink Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_FOOD_DRINK
This service returns hotel facilities in the FOOD&DRINK category
Sport Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_SPORT
This service returns hotel facilities in the SPORT category
Beach Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_BEACH
This service returns hotel facilities in the BEACH category
Spa Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_SPA
This service returns hotel facilities in the SPA category
Kid & Baby Facilities
GET
/api/v1/generic-api-service/content/list-hotel-facilities/ATTRIBUTE_PARENT_HOTELFACILITY_KID_BABY
This service returns hotel facilities in the KID&BABY category
Request & Response Details
- Query Details
- Request
- Response
- Response Details
Name | Type | Required | Description |
---|---|---|---|
page | int | No | Pagination offset. Integer starting at 0. |
size | int | No | The number of hotels is requested response. |
/// no request parameter required
{
"totalCount": 663,
"pageSize": 1,
"attributes": [
{
"id": "7572",
"parentId": 8587,
"parentName": "FOOD_DRINK",
"name": "Breakfast Lounge",
"description": {
"RUSSIAN": "Зал для завтраков",
"ENGLISH": "Breakfast Lounge",
"TURKISH": "Kahvaltı Salonu",
"FRENCH": "Salle de petit-déjeuner",
"GERMAN": "Frühstückssalon"
}
},
{
"id": "9351",
"parentId": 8587,
"parentName": "FOOD_DRINK",
"name": "Turkish Coffee",
"description": {
"RUSSIAN": "Кофе по-турецки",
"ENGLISH": "Turkish Coffee",
"TURKISH": "Türk Kahvesi",
"FRENCH": "Café Turc",
"GERMAN": "Türkischer Kaffee"
}
},
{
"id": "7302",
"parentId": 8587,
"parentName": "FOOD_DRINK",
"name": "Outdoor Restaurant",
"description": {
"RUSSIAN": "Ресторан под открытым небом",
"ENGLISH": "Outdoor Restaurant",
"TURKISH": "Açık Restoran",
"FRENCH": "Restaurant extérieur",
"GERMAN": "Outdoor-Restaurant"
}
},
{
"id": "8224",
"parentId": 8587,
"parentName": "FOOD_DRINK",
"name": "Lobby Bar",
"description": {
"RUSSIAN": "Лобби-бар",
"ENGLISH": "Lobby Bar",
"TURKISH": "Lobi Bar",
"FRENCH": "Bar du hall",
"GERMAN": "Lobby-Bar"
}
},
{
"id": "4012",
"parentId": 8587,
"parentName": "FOOD_DRINK",
"name": "Poolside Snack Bar",
"description": {
"RUSSIAN": "Бар у бассейна",
"ENGLISH": "Poolside Snack Bar",
"TURKISH": "Havuz Kenarı Atıştırmalık Barı",
"FRENCH": "Bar à snacks au bord de la piscine",
"GERMAN": "Snackbar am Pool"
}
}
]
}
Name | Type | Required | Description |
---|---|---|---|
totalCount | int | Yes | The total number of hotel facilities |
pageSize | int | Yes | The number of page size. |
attributes | object-array | Yes | Hotel facility list. |
attributes/id | int | Yes | Facility id. |
attributes/parentId | int | Yes | Parent id the facility belongs to. |
attributes/parentName | string | Yes | Parent id the facility belongs to. |
attributes/name | string | Yes | Facility name. |
attributes/description/RUSSIAN | string | Yes | It means the Russian language translation of the hotel facility |
attributes/description/ENGLISH | string | Yes | It means the English language translation of the hotel facility |
attributes/description/TURKISH | string | Yes | It means the Turkish language translation of the hotel facility |
attributes/description/FRENCH | string | Yes | It means the French language translation of the hotel facility |
attributes/description/GERMAN | string | Yes | It means the German language translation of the hotel facility |