Developer Portal
API & SDKs Marketing OpenTravel
Log In to the Console
Table of contents

APIs & SDKs

Whether you own properties or not, LODGEA provides the platform to provide accommodation services (such as Hotels, * *Vacation Rentals**, **Camping sites** and many more) to your consumers through a variety of connectivity options and business models. LODGEA provides a flexible and open platform for many use cases. The LODGEA API allows you to search and book, check for availabilities or locations and get all available information about a specific property. You can then execute the booking flow to allow users to book the desired property or room. For more information, check out the official API docs.

API endpoint

LODGEA customers can reside in different regions such as the European Union or the United States. Customers pick a region once they sign up. Each region has its own API endpoint to ensure the data remains inside the region. This is especially important to ensure compliance with regulations such as the EU-GDPR. The API is only accessible via HTTPS, the base URL is https://api.eu.lodgea.io/, and the current version is v1 which results in the base URL for all requests: https://api.eu.lodgea.io/v1/ or https://api.us.lodgea.io/v1/. See the following table for publicly available regions.

RegionEndpoint
European Union (EU)https://api.eu.lodgea.io/
United States of America (US)https://api.us.lodgea.io/

If you are writing universal applications for LODGEA that are intended to be used by any or multiple LODGEA customers, you application needs to be able to have the region configured. Technically both regions operate exactly the same and both systems are identical at all time. However if you want to connect a LODGEA customer, you need to have her configured the region.

Cross-Origin Resource Sharing (CORS)

This API features Cross-Origin Resource Sharing (CORS) implemented in compliance with W3C spec, that allows cross-domain communication from the browser. All responses have a wildcard same-origin which makes them completely public and accessible to everyone, including any code on any site. Keep in mind that access to your API is entirely controlled by the API key. It is not generally recommended to expose your API key to the client side.

Client libraries

Most of the examples in this documentation use curl to connect to the API. To execute the API methods with Postman, you can download our Postman collection. Ensure to have the correct endpoint for the correct region and your API key configured after importing the Postman collection.

Software Development Kits (SDK)
Node.js
PHP
Python
Java
.NET
npm install lodgea-js
composer require lodgea/lodgea-php
pip install lodgea-python
compile "com.lodgea:lodgea:1.0.2"
nuget install lodgea-csharp

The Software Development Kits (SDK) are available for Node.js, PHP, Python, Java and .NET. They can be installed through the respective package managers or you can install them from source. The source code of the SDKs is available on Github. All SDKs, both on Github and in the respective package managers are always up-to-date as they are automatically generated when the API is updated.

Authentication

The LODGEA API offers authentication with an API Key. You can create an API key for your LODGEA account in the API & SDKs section in the Settings inside the LODGEA Management Console. You need administrator privileges to create API keys. Add your API key as the apiKey header to each request. If you receive a 401 response, make sure your filled key is valid. The LODGEA API is designed to be as simple as possible and the authentication with an API key ensures that it does not require anything else than an HTTP client. However that means you need to ensure that your API key does not get exposed or compromised. If you feel that your API key was compromised (e.g. released to the public), you can always remove the API key in the Management Console and create a new one. There is no limit on the number of API keys an account can have.

Search and book

LODGEA follows a stateless concept and does not have sessions or any session handling. The booking process ensures that the provided properties, their rates and prices are available at the time of booking. That means you do not have to implement any session handling or timeouts unless your application requires such mechanism. The Search and book flow is entirely optional and each task in the flow can be adjusted to the needs of your application. The standard Search and book workflow is as follows.

  1. Search for available properties
  2. Select the date and the product
  3. Redirect to the booking page

The stateless nature of the API allows switching between the LODGEA provided Storefront, the account's websites, and the API. The parameters and methods used by the API are identical to those used by the Storefront. The Search and book flow on the Storefront is also identical to the API as both use the same system-internal APIs.

Search availability

The first step is to search the inventory of the system for available properties. LODGEA has a multi-dimensional search engine that allows querying availability of properties without any search parameters defined. If no parameter is defined for the occupancy, then the system will return prices for 2 adults by default. If no date is defined, then the system will return the lowest price available in the entire inventory of properties. If you wish to search for specific locations, you can use the location search method before executing the availability search.

curl --location --request POST "https://api.eu.lodgea.io/v1/availability/search" \
  --header "Content-Type: application/json" \
  --header "Accept: application/json" \
  --header "apiKey: <YOUR_API_KEY>" \
  --data-raw '{
    "adultCount": 2,
    "childCount": 1,
    "childAgeList": [
      3
    ],
    "currencyCode": "EUR",
    "minLengthOfStay": 10,
    "maxLengthOfStay": 14,
    "earliestArrival": "2022-09-01",
    "latestReturn": "2022-09-08"
}'

The search parameters can be used to filter properties and narrow down the search. The offset parameter serves to query the next page as the result will only contain 10 properties per result. This method should only be used to perform searches and not for exporting properties and their rates, prices and availability.

NameTypeDescriptionExample
adultCountintegerNumber of adults2
childCountintegerNumber of childs1
childAgeListarrayAge of the childs as integer array[3]
currencyCodestringISO 4217 currency code, see CurrenciesEUR
minLengthOfStayintegerMinimum days of stay (min: 1, max: 30)1
maxLengthOfStayintegerMaximum days of stay (min: 1, max: 30)27
locationNamestringName of the locationSylt
locationTypestringType of the location, see location typeslocality
earliestArrivaldateEarliest arrival date, format is: YYYY-MM-DD2022-09-01
latestReturndateLatest return date, format is: YYYY-MM-DD2022-09-08
sortstringSort order, either quality or pricequality
serviceListarrayList of service codes, see service codes[242]
typeListarrayList of type codes, see property types[20]
unitTypeListarrayList of unit type codes, see unit and room types[9]
unitAmenityListarrayList of unit amenity codes, see unitAmenityCode[50]
mealPlanListarrayList of meal plan codes, see meal plans[19]
offsetintegerOffset after which properties are return (used for pagination)10

See the appendix for details and possible values of the parameters. LODGEA uses ISO standards where applicable or the OpenTravel.org standard with extensions commonly applied by the market (market standard). The amenities, services and types are exactly the same as defined in the Management Console.

Select date and product

The availability search only returned the property and the lowest price for the requested parameters. Your application or the user now need to select the desired date and price of the property selected. You can use the method Get property by id to get the property content which returns the property and the base product configuration. However, the product configuration is returned with the base prices. To get the availability of the property with the prices in the desired currency, you need to use the Get availability for property method instead.

curl --location --request POST 'https://api.eu.lodgea.io/v1/availability/get' \
    --header 'Content-Type: application/json' \
    --header 'Accept: application/json' \
    --header 'apiKey: <YOUR_API_KEY>' \
    --data-raw '{
        "propertyCode": "strandresidenz-sylt",
        "currencyCode": "EUR"
    }'

The method takes the code of the property which you retrieved in the search and expects the currency code in which you would want to retrieve the product configuration in. The result will only contain the product configuration of the requested property and no other information. All base currencies will be converted to your requested currency automatically using the currently published daily rates at the markets.

NameTypeDescriptionExample
propertyCodestringUnique code or id of the property to get the availability forstrandresidenz-sylt
currencyCodestringISO 4217 currency code, see CurrenciesEUR

The product configuration is an array that contains all products for the property. A product is a combination of rate plans, meal plans and units and an optional policy attached to the product. It defines which unit can be book at what date for what price with what meal plan included. The policy, if attached, also defines what the conditions are. If not policy is attached to the product, then the default policy of the property applies. If not default property exists either, then the product is considered non refundable. The policy includes cancellation policy, fees, taxes and many other conditions of the rate. It is highly recommended not to implemented specifics of policies as policies are also shown on the booking page when you redirect the user to the booking, see Redirect to booking.

[
    {
        "ratePlanList": [
            {
                "active": true,
                "name": "Standard Amrum",
                "code": "standard-amrum",
                "pricingList": [
                    {
                        "dateTime": 1676678400000,
                        "occupancy": 4,
                        "priceList": {
                            "1": 182,
                            "2": 364,
                            "3": 546,
                            "4": 728,
                            "5": 910,
                            "6": 1092,
                            "7": 1274,
                            "8": 1456,
                            "9": 1638,
                            "10": 1820,
                            "11": 2002,
                            "12": 2184,
                            "13": 2366,
                            "14": 2548,
                            "15": 2730,
                            "16": 2912,
                            "17": 3094,
                            "18": 3276,
                            "19": 3458,
                            "20": 3640,
                            "21": 3822,
                            "22": 4004,
                            "23": 4186,
                            "24": 4368,
                            "25": 4550,
                            "26": 4732,
                            "27": 4914,
                            "28": 5096,
                            "29": 5278,
                            "30": 5460
                        },
                        "currencyCode": "EUR"
                    }
                ]
            }
        ],
        "name": "Standard Föhr",
        "mealPlanList": [
            {
                "code": 14,
                "name": "Room only"
            }
        ],
        "roomTypeList": [
            {
                "typeCode": "foehr"
            }
        ],
        "policyInfo:": null
    }
]

The availability, also referred to as product list, is an array that holds all products for the property. Each product is attached to one or more units (also known as rooms), has a name and may contain meal plans. If no meal plans are present, the product is considered as Room only. The product returned by the availability consists of the following fields.

NameTypeDescriptionExample
namestringName of the productStandard Föhr
ratePlanListarrayArray with all rate plans, see Rate plan object-
mealPlanListarrayArray with all meal plans included in the product-
roomTypeListarrayArray with all rooms or units valid for this product-

The roomTypeList contains an object with a typeCode property. The typeCode is exactly the same as the roomId in the guestRoomList array returned by Get property by id. It links the unit or room with product. The ratePlan defines what prices apply to the unit at what date with what occupancy and shall be used to determine the price of the product. Remember: A room or unit can have multiple products for multiple different meal plans and policy configurations, for example: "Non-refundable breakfast rate", "Refundable breakfast rate", " Non-refundable all inclusive rate", "Refundable all inclusive rate" and so on.

Rate plan object

The ratePlan object follows the rate structure as defined by the OpenTravel standard and is compatible with almost all rate structures that are currently operated in the market including property management systems (PMS), channel managers and online travel agencies (OTA). A ratePlan consists of the following fields.

NameTypeDescriptionExample
activebooleanIf false, the rate plan can not be bookedtrue
codestringThe unique id or code of the rate planstandard-amrum
namestringIf human-readable name of the rate planStandard Amrum
pricingListarrayThe Length of stay (LOS) prices of the rate plan-

You need to ignore any rate plans that do not have the active field with the value true. The name of the rate plan is only for internal purposes and you should display the name of the product instead. The pricingList is used to calculate the total price of the unit at the given arrival or check-in date for the defined occupancy and length of stay (nights in the unit).

Length of stay (LOS) pricing

An object in the pricingList defines the price based on the occupancy and Length of stay (LOS). Each object represents the price for a given occupancy and the check-in or arrival date, meaning the date the guests arrive at the property or the date they spend their first night in the property.

NameTypeDescriptionExample
dateTimeintegerThe timestamp of check-in (All dates are UTC)1676678400000
occupancyintegerMaximum number of guests staying4
currencyCodestringISO 4217 currency code, see CurrenciesEUR
priceListobjectThe prices (values) for the given length of stay (fields) in the defined currency-

All check-in dates in dateTime are UTC timestamps meaning that irrespective of the local date of the property, the date is defined in UTC. As different properties may reside in different timezones, all dates are in UTC to enable searching across timezones. You should only use the UTC date component of the timestamp and ignore any other timezone. The occupancy defines the maximum total number of guests staying. This combination allows occupancy based pricing as well as length of stay based pricing. In order to determine the correct price, you need to find the lowest price for the occupancy and length of stay combination in any ratePlan object in the desired product object. The lowest price value of any active ratePlan in any active product is the lowest available price of the property.

{
    "dateTime": 1676678400000,
    "occupancy": 4,
    "priceList": {
        "7": 1274,
        "14": 2548,
        "21": 3822
    },
    "currencyCode": "EUR"
}

The above example of a Length of stay price or LOS price is for check-in on Saturday, February 18th, 2023 ( timestamp value 1676678400000) and a maximum occupancy of 4 guests with all prices defined in EUR as a currency. The priceList contains the length of stay as the property name or field name and the price amount as the property value or field value.

/* a 14 night stay costs 2548 euros */
priceList[14] = 2548;

/* a 7 night stay costs 1274 euros */
priceList[7] = 1274;

Although this may seem complicated, the LOS pricing gives you the ability to display prices in any form across multiple dates. Most reservation systems implement a quote method that requires you to request prices for specific occupancy and date combinations making it impossible to display calendars, determine lowest prices per month and other price operations. Further, the length of stay format provides the maximum compatibility with various pricing methods. It supports length of stay based pricing scenarios like Stay 12 days, pay only 11 days when travelling with 4 or more people. When displaying prices to consumers, you can focus on the unit, the product name, the meal plan and the lowest price.

Redirect to booking

Booking a product is done by redirecting the user to the booking page. The booking page handles all the complexity of payments, regulations and certification requirements of connected systems. It frees you from having to implement all the complexities that come with a booking process. There are no API methods required to redirect a user to the booking page of a Storefront. You can construct the URL of the booking page using the information from the property and the product as follows.

https://my-lodgea-website-domain.tld/my-booking-path/?arrival=2022-10-14&return=2022-10-16
                    &adt=2&chd=2&ageList=10,13&property=my-property-code&unit=my-unit-code
                    &product=my-product-code&cc=EUR&t=1663856359092

Use the domain name and the booking path (default is booking) as configured in the Management Console. Append the query string parameters of the property, unit and product you want the user to book. The following query string parameters are required for the booking page. The chd and ageList parameter can be omitted if you do not want to book any children.

ParameterDescriptionExample
arrivalCheck-in or arrival date in YYYY-MM-DD format2022-10-14
returnCheck-out or return date in YYYY-MM-DD format2022-10-16
adtNumber of adults to book the product for2
chdNumber of children to book the product for, can be omitted if no children are booked2
ageListComma separated list with the age of each child at the time of check-out10,13
propertyUnique code or id of the property to bookharbour-hotel
unitUnique code or id of the unit to bookstandard-room
productUnique code or id of the product to bookstandard-refundable
ccISO 4217 currency code, see CurrenciesEUR
tThe current unix timestamp (to bypass potential caching)1663856359092

Marketplace booking

The booking of Marketplace properties is not done on your configured website, but on bookingtransaction.com. This allows you to send users to the Marketplace booking process without the need of configuring a custom domain (often referred to as headless operation). The overall process is identical to the process when booking your own inventory, except you'll have to redirect the user to bookingtransaction.com. Also note that the user will not return to your site when the booking was finished through the Marketplace.

https://bookingtransaction.com/?arrival=2023-05-19&return=2023-05-21
                &adt=2&chd=2&ageList=11,14
                &property=mkt_park-inn-by-radisson-nuremberg-c0c9abdaa48ab967a861428482c42e43
                &unit=3c80eb3d19965b15644ef7d1bf6ee773
                &cc=USD
                &lang=en
                &tenantCode=my-tenant-code
                &t=1678365375299

The Marketplace booking will require additional parameters including lang to define the language the process shall be done in and the tenantCode to identify your account. The tenantCode will be attached to the Marketplace transaction and the underlying payment account will receive the commission payment once the transaction completed.

ParameterDescriptionExample
arrivalCheck-in or arrival date in YYYY-MM-DD format2023-05-19
returnCheck-out or return date in YYYY-MM-DD format2023-05-21
adtNumber of adults to book the product for2
chdNumber of children to book the product for, can be omitted if no children are booked2
ageListComma separated list with the age of each child at the time of check-out10,13
propertyUnique code or id of the property to bookharbour-hotel
unitUnique code or id of the unit to bookstandard-room
langSee the Language codes supported by the Marketplaceen
ccISO 4217 currency code, see CurrenciesEUR
tenantCodeThe unique system code or tenant code of your environmentmy-tenant-code
tThe current unix timestamp (to bypass potential caching)1663856359092

Methods

The API and the SDKs offer the following methods. All methods are stateless and do not require any prior action to be executed. The methods are identical to the internal methods used both by the Storefront (the customer's website or frontend) as well as the Management Console. If you want to try and execute the methods in Postman for testing, you can download our Postman collection.

Search for location

Get a list of locations and their lowest available rate related to a given keyword.
Request
hide
searchText
required string in body
A search text in free form to search locations by.
    currencyCode
    required string in body
    The currency code of the currency in which the lowest price for each found location should be returned.

    See also in the appendix.

    • Allowed values are "AED", "ARS", "AUD", "AZN", "BGN", ... (show 45 more)
    languageCode
    required string in body
    The language code of the language in which the descriptive texts for each found location should be returned.

    Please note that beside the general restrictions listed below only languages configured during system setup for your respective tenant are allowed.

    See also in the appendix.

    • Allowed values are "af", "ar", "bg", "ca", "cs", ... (show 33 more)
    Response
    hide
    languageCode
    guaranteed string
    The language code of the language in which the descriptive texts for each found location are returned.

    Please note that beside the general restrictions listed below only languages configured during system setup for your respective tenant are allowed.

    See also in the appendix.

    • Allowed values are "af", "ar", "bg", "ca", "cs", ... (show 33 more)
    list
    guaranteed array of objects
    A list of available properties matching the given criteria.
    Show child attributes of array element type
      post
      /location/search
      {
        "searchText": "Hotel Stadt Hamburg",
        "currencyCode": "EUR",
        "languageCode": "en"
      }
      Response
      {
        "languageCode": "en",
        "list": [
          {
            "name": "Westerland",
            "currencyCode": "EUR",
            "lowestPrice": 99.99,
            "type": "sublocality"
          }
        ]
      }

      Search for availability

      Get availability information based on search criteria.
      Request
      show
      adultCount
      optional integer in body
      The amount of adults that will stay at the property.
      Default value is 2.
      • Minimum value is 1.
      childCount
      optional integer in body
      The amount of children that will stay at the property.
        childAgeList
        optional array of integers in body
        A list describing the ages of the children that will stay at the property. If childAgeList is set childCount has to be set as well. If childAgeList and childCount are set, childCount must be equal to the length of childAgeList.
          currencyCode
          required string in body
          The currency code of the currency in which the lowest price for each found location should be returned.

          See also in the appendix.

          • Allowed values are "AED", "ARS", "AUD", "AZN", "BGN", ... (show 45 more)
          languageCode
          required string in body
          The language code of the language in which the descriptive texts for each found property should be returned.

          Please note that beside the general restrictions listed below only languages configured during system setup for your respective tenant are allowed.

          See also in the appendix.

          • Allowed values are "af", "ar", "bg", "ca", "cs", ... (show 33 more)
          unitSystem
          optional string in body
          The unit system to use in the result.
          Default value is "metric".
          • Allowed array members are "metric", "imperial".
          minLengthOfStay
          optional integer in body
          The desired minimum length of stay in nights.
          • Value must be between 1 and 30.
          maxLengthOfStay
          optional integer in body
          The desired maximum length of stay in nights.
          • Value must be between 1 and 30.
          locationName
          optional string in body
          The name of a location the properties should be located in.If locationType is set, locationName has to bet set as well.
            locationType
            optional string in body
            Defines the type oflocationName. If locationType is set, locationName has to bet set as well.

            See also in the appendix.

            • Allowed values are "formatted_address", "place_id", "locality", "administrative_area_level_1", "administrative_area_level_2", ... (show 17 more)
            earliestArrival
            optional string in body
            The earliest possible arrival date. Expects exactly the format of "YYYY-MM-DD".
              latestReturn
              optional string in body
              The latest possible departure date. Expects exactly the format of "YYYY-MM-DD".
                sort
                optional string in body
                The criteria to order the results by. Sort order for price is ascending, sort order for quality is always descending. Quality is an internally calculated score for the property.', )}
                • Allowed array members are "quality", "price".
                serviceList
                optional array of numbers in body
                A list of service codes indicating which services and amenities the entire property should offer. The codes are AND chained.

                See also in the appendix.

                • Allowed array members are 1, 2, 3, 4, 5, ... (show 522 more)
                typeList
                optional array of numbers in body
                A list of property class type codes specifying the desired property classes. The codes are OR chained.

                See also in the appendix.

                • Allowed array members are 1, 2, 3, 4, 5, ... (show 67 more)
                unitTypeList
                optional array of numbers in body
                A list of unit and room type codes indicating which kinds of unit/room type is desired.

                See also in the appendix.

                • Allowed array members are 1, 4, 5, 7, 8, ... (show 13 more)
                unitAmenityList
                optional array of numbers in body
                A list of room amenity type codes indicating which room level amenities are desired. The codes are AND chained.

                See also in the appendix.

                • Allowed array members are 1, 2, 3, 4, 5, ... (show 467 more)
                mealPlanList
                optional array of numbers in body
                A list of meal plan type codes indicating which kinds of meal plan type is desired.

                See also in the appendix.

                • Allowed array members are 0, 1, 2, 3, 4, ... (show 20 more)
                Response
                hide
                languageCode
                guaranteed string
                The language code of the language in which the descriptive texts for each found property are returned.

                Please note that beside the general restrictions listed below only languages configured during system setup for your respective tenant are allowed.

                See also in the appendix.

                • Allowed values are "af", "ar", "bg", "ca", "cs", ... (show 33 more)
                list
                guaranteed array of objects
                A list of available properties matching the given criteria.
                Show child attributes of array element type
                  post
                  /availability/search
                  {
                    "adultCount": 2,
                    "childCount": 2,
                    "childAgeList": [
                      0
                    ],
                    "currencyCode": "EUR",
                    "languageCode": "en",
                    "unitSystem": "",
                    "minLengthOfStay": 1,
                    "maxLengthOfStay": 27,
                    "locationName": "Oberbayern",
                    "locationType": "locality",
                    "earliestArrival": "2022-09-01",
                    "latestReturn": "2022-09-08",
                    "sort": "price",
                    "serviceList": [
                      0
                    ],
                    "typeList": [
                      0
                    ],
                    "unitTypeList": [
                      0
                    ],
                    "unitAmenityList": [
                      0
                    ],
                    "mealPlanList": [
                      0
                    ]
                  }
                  Response
                  {
                    "languageCode": "",
                    "list": [
                      {
                        "code": "strandresidenz-sylt",
                        "languageCode": "en",
                        "currencyCode": "EUR",
                        "unitSystem": "metric",
                        "name": "Strandresidenz Sylt",
                        "uri": "strandresidenz-sylt",
                        "serviceList": [
                          0
                        ],
                        "categoryList": [
                          0
                        ],
                        "uriPath": "germany/schleswig-holstein/nordfriesland/wenningstedt-braderup-sylt/strandresidenz-sylt",
                        "text": "This family-run hotel in Wenningstedt on Sylt is just 820 feet from the beach. It offers rooms which are decorated in a typically Frisian style. A breakfast buffet is prepared each morning at the Sylter Domizil. The Wintergarten conservatory café/bistro serves snacks and drinks during the day. The bar includes a free internet terminal. The Sylter Domizil's 722 ft² spa features a sauna steam bath and fitness room. The terrace has wicker beach chairs for relaxing in.",
                        "geo": {
                          "language": "de",
                          "formatted_address": "Nordhedig 20, 25980 Sylt, Germany",
                          "route": "Nordhedig",
                          "street_number": "20",
                          "postal_code": "25980",
                          "locality": "Sylt",
                          "sublocality": "Westerland",
                          "sublocality_level_1": "Westerland",
                          "sublocality_level_2": "Some Sublocality",
                          "sublocality_level_3": "Some Sublocality",
                          "sublocality_level_4": "Some Sublocality",
                          "sublocality_level_5": "Some Sublocality",
                          "administrative_area_level_1": "Schleswig-Holstein",
                          "administrative_area_level_2": "Friesland",
                          "administrative_area_level_3": "",
                          "administrative_area_level_4": "",
                          "administrative_area_level_5": "",
                          "state_code": "SH",
                          "country": "Germany",
                          "country_code": "DE",
                          "location": {
                            "lng": 8.304857,
                            "lat": 54.9157118
                          },
                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw"
                        },
                        "mediaList": [
                          {
                            "tagList": [
                              0
                            ],
                            "isMainImage": false,
                            "url": "5e3d9d49e9480.jpg",
                            "sortOrder": 1000
                          }
                        ],
                        "attractionList": [
                          {
                            "typeCode": 0,
                            "name": "Flughafen Sylt",
                            "distance": {
                              "value": 2300,
                              "unit": "m"
                            }
                          }
                        ],
                        "lowestPrice": {
                          "amount": 89.99,
                          "currencyCode": "EUR",
                          "arrivalDate": 1660780800,
                          "returnDate": 1660867200,
                          "lengthOfStay": 1
                        }
                      }
                    ]
                  }

                  List (filtered) properties

                  List properties, optionally filtered by a keyword.
                  Request
                  hide
                  keyword
                  optional string in query
                  The keyword to filter the properties by. Leave empty/undefined to list all properties.
                    pageToken
                    optional string in query
                    The page token from the last response to load the subsequent page.
                      Response
                      hide
                      list
                      guaranteed array of objects
                      Show child attributes of array element type
                        pageToken
                        optional string
                        The page token to pass in the subsequent call to retrieve more results, only returned if more results are available.
                          get
                          /properties?keyword=Strandresidenz%20Sylt&pageToken=eyJ0ZW5hbnRDb2RlIjoiZG1vLWRlbW8iLCJuYW1lIjoiTGFuZGhhdXMgVHJlc2tlcnNhbmQiLCJwcm9wZXJ0eUlkIjoibGFuZGhhdXMtdHJlc2tlcnNhbmQifQ%3D%3D
                          Response
                          {
                            "list": [
                              {
                                "published": false,
                                "name": "Strandresidenz Sylt",
                                "propertyId": "strandresidenz-sylt",
                                "image": "obj_1280x960_54620_001.jpg",
                                "address": "Nordhedig 20 25980 Sylt Germany",
                                "lastUpdated": 1652091337389
                              }
                            ],
                            "pageToken": "eyJ0ZW5hbnRDb2RlIjoiZG1vLWRlbW8iLCJuYW1lIjoiTGFuZGhhdXMgVHJlc2tlcnNhbmQiLCJwcm9wZXJ0eUlkIjoibGFuZGhhdXMtdHJlc2tlcnNhbmQifQ=="
                          }

                          Create a property

                          Creates a new property and adds it to the inventory
                          Request
                          hide
                          property
                          required object in body
                          Show child attributes
                            productList
                            required array of objects in body
                            Show child attributes of array element type
                              Response
                              hide
                              Response is empty.
                              post
                              /properties
                              {
                                "property": {
                                  "code": "strandresidenz-sylt",
                                  "name": "Strandresidenz Sylt",
                                  "currencyCode": "EUR",
                                  "rating": {
                                    "recommendation": 75,
                                    "guestReview": 85
                                  },
                                  "propertyInfo": {
                                    "unitCount": 4,
                                    "messageList": [
                                      {
                                        "languageCode": "en",
                                        "text": "More sea does not work! In a unique location just behind the dunes, less than 100 steps from the beach and the spa promenade, in a prime location on the beach “Nordhedig”, you can enjoy your stay in a small, new 5-star luxury complex (DTV classification) with a total of 4 separate apartments for 2-4 people. The interior has a modern rural style that offers all the amenities. You can find films about the property and individual apartments on our website."
                                      }
                                    ],
                                    "categoryList": [
                                      0
                                    ],
                                    "languageList": [
                                      ""
                                    ],
                                    "location": {
                                      "lng": 8.304857,
                                      "lat": 54.9157118
                                    },
                                    "acceptedPaymentList": [
                                      {
                                        "code": "eccard",
                                        "type": "debitcard"
                                      }
                                    ]
                                  },
                                  "guestInfo": {
                                    "guestAddressRequired": false,
                                    "guestContactNumberRequired": false,
                                    "guestNameListRequired": false,
                                    "hasAgeRestriction": false,
                                    "ageRestrictionMax": 120,
                                    "ageRestrictionMin": 0,
                                    "hasCurfew": false,
                                    "curfewStart": 82800000,
                                    "curfewEnd": 10800000
                                  },
                                  "awardList": [
                                    {
                                      "provider": "star-rating",
                                      "rating": 5
                                    }
                                  ],
                                  "contactList": [
                                    {
                                      "profileType": "physicallocation",
                                      "phoneList": [
                                        {
                                          "number": 494012345,
                                          "typeCode": 1
                                        }
                                      ],
                                      "personList": [
                                        {
                                          "firstName": "Jan",
                                          "lastName": "Kammerath",
                                          "gender": "Male"
                                        }
                                      ],
                                      "emailList": [
                                        ""
                                      ],
                                      "addressList": [
                                        {
                                          "addressLine": "Nordhedig 20",
                                          "usageType": "physical",
                                          "propertyName": "Strandresidenz Sylt",
                                          "companyName": "Meier GmbH",
                                          "cityName": "Sylt",
                                          "postalCode": "25980",
                                          "jobDescription": "Marketing Manager",
                                          "state": "SH",
                                          "countryCode": "DE"
                                        }
                                      ]
                                    }
                                  ],
                                  "areaInfo": {
                                    "attractionList": [
                                      {
                                        "name": "Flughafen Hamburg",
                                        "typeCode": 1,
                                        "distance": 42,
                                        "distanceUnit": "meters"
                                      }
                                    ]
                                  },
                                  "facilityInfo": {
                                    "restaurantList": [
                                      {
                                        "ambianceList": [
                                          ""
                                        ],
                                        "breakfast": false,
                                        "brunch": false,
                                        "dinner": false,
                                        "lunch": false,
                                        "name": "Simple Restaurant",
                                        "cuisineList": [
                                          0
                                        ],
                                        "dietaryOptionList": [
                                          ""
                                        ],
                                        "featureList": [
                                          ""
                                        ],
                                        "messageList": [
                                          {
                                            "languageCode": "en",
                                            "text": "My Restaurant description"
                                          }
                                        ],
                                        "operationTimeList": [
                                          {
                                            "start": 23400000,
                                            "end": 50400000,
                                            "monday": false,
                                            "tuesday": false,
                                            "wednesday": false,
                                            "thursday": false,
                                            "friday": false,
                                            "saturday": false,
                                            "sunday": false
                                          }
                                        ]
                                      }
                                    ],
                                    "guestRoomList": [
                                      {
                                        "isActive": false,
                                        "roomId": "amrum",
                                        "name": "Amrum",
                                        "mediaList": [
                                          {
                                            "isMainImage": false,
                                            "url": "5e3d9d49e9480.jpg",
                                            "sortOrder": 1000,
                                            "tagList": [
                                              0
                                            ],
                                            "moderationLabelList": [
                                              ""
                                            ],
                                            "detectionLabelList": [
                                              ""
                                            ],
                                            "propertyAmenityList": [
                                              0
                                            ],
                                            "roomAmenityList": [
                                              0
                                            ]
                                          }
                                        ],
                                        "roomTypeCode": 1,
                                        "isNonSmoking": false,
                                        "amenityList": [
                                          {
                                            "code": 0,
                                            "quantity": 1
                                          }
                                        ],
                                        "messageList": [
                                          {
                                            "languageCode": "",
                                            "text": ""
                                          }
                                        ],
                                        "maxOccupancy": 4,
                                        "maxAdultOccupancy": 2,
                                        "maxChildOccupancy": 4,
                                        "bedCount": 2,
                                        "bedroomCount": 1,
                                        "bathroomCount": 1,
                                        "unitSize": {
                                          "value": 120.93,
                                          "unit": "sqm"
                                        }
                                      }
                                    ]
                                  },
                                  "mediaList": [
                                    {
                                      "isMainImage": false,
                                      "url": "5e3d9d49e9480.jpg",
                                      "sortOrder": 1000,
                                      "tagList": [
                                        0
                                      ],
                                      "moderationLabelList": [
                                        ""
                                      ],
                                      "detectionLabelList": [
                                        ""
                                      ],
                                      "propertyAmenityList": [
                                        0
                                      ],
                                      "roomAmenityList": [
                                        0
                                      ]
                                    }
                                  ],
                                  "geo": {
                                    "de": {
                                      "location": {
                                        "lat": 54.9157118,
                                        "lng": 8.304857
                                      },
                                      "formatted_address": "Nordhedig 20, 25980 Sylt, Deutschland",
                                      "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                      "street_number": "20",
                                      "route": "Nordhedig",
                                      "sublocality": "Westerland",
                                      "sublocality_level_1": "Westerland",
                                      "locality": "Sylt",
                                      "administrative_area_level_3": "Nordfriesland",
                                      "administrative_area_level_1": "Schleswig-Holstein",
                                      "state_code": "SH",
                                      "country": "Deutschland",
                                      "country_code": "DE",
                                      "postal_code": "25980",
                                      "language": "de"
                                    },
                                    "en": {
                                      "location": {
                                        "lat": 54.9157118,
                                        "lng": 8.304857
                                      },
                                      "formatted_address": "Nordhedig 20, 25980 Sylt, Germany",
                                      "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                      "street_number": "20",
                                      "route": "Nordhedig",
                                      "sublocality": "Westerland",
                                      "sublocality_level_1": "Westerland",
                                      "locality": "Sylt",
                                      "administrative_area_level_3": "Nordfriesland",
                                      "administrative_area_level_1": "Schleswig-Holstein",
                                      "state_code": "SH",
                                      "country": "Germany",
                                      "country_code": "DE",
                                      "postal_code": "25980",
                                      "language": "en"
                                    },
                                    "da": {
                                      "location": {
                                        "lat": 54.9157118,
                                        "lng": 8.304857
                                      },
                                      "formatted_address": "Nordhedig 20, 25980 Sylt, Tyskland",
                                      "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                      "street_number": "20",
                                      "route": "Nordhedig",
                                      "sublocality": "Westerland",
                                      "sublocality_level_1": "Westerland",
                                      "locality": "Sylt",
                                      "administrative_area_level_3": "Nordfriesland",
                                      "administrative_area_level_1": "Schleswig-Holstein",
                                      "state_code": "SH",
                                      "country": "Tyskland",
                                      "country_code": "DE",
                                      "postal_code": "25980",
                                      "language": "da"
                                    },
                                    "nl": {
                                      "location": {
                                        "lat": 54.9157118,
                                        "lng": 8.304857
                                      },
                                      "formatted_address": "Nordhedig 20, 25980 Sylt, Duitsland",
                                      "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                      "street_number": "20",
                                      "route": "Nordhedig",
                                      "sublocality": "Westerland",
                                      "sublocality_level_1": "Westerland",
                                      "locality": "Sylt",
                                      "administrative_area_level_3": "Nordfriesland",
                                      "administrative_area_level_1": "Schleswig-Holstein",
                                      "state_code": "SH",
                                      "country": "Duitsland",
                                      "country_code": "DE",
                                      "postal_code": "25980",
                                      "language": "nl"
                                    }
                                  },
                                  "published": false,
                                  "policyList": [
                                    {
                                      "checkInTime": 54000000,
                                      "checkOutTime": 43200000,
                                      "totalGuestCount": 10,
                                      "cancellationPolicyList": [
                                        {
                                          "percentAfterReservation": 0,
                                          "nightsAfterReservation": 0,
                                          "deadlineDays": 0,
                                          "deadlineHours": 0,
                                          "percentAfterDeadline": 0,
                                          "nightsAfterDeadline": 0,
                                          "noShowPolicy": "Default"
                                        }
                                      ],
                                      "advanceBookingMin": 365,
                                      "advanceBookingMax": 1,
                                      "petsPolicy": {
                                        "allowed": false,
                                        "byArrangement": false,
                                        "freeOfCharge": false
                                      },
                                      "prepaymentPolicy": "after_reservation_is_made",
                                      "guaranteePolicy": {
                                        "percentAfterReservation": 0,
                                        "nightsAfterReservation": 0,
                                        "deadlineDays": 0,
                                        "deadlineHours": 0,
                                        "percentAfterDeadline": 0,
                                        "nightsAfterDeadline": 0,
                                        "noShowPolicy": "Default"
                                      },
                                      "taxPolicyList": [
                                        {
                                          "typeCode": 36,
                                          "percent": 5,
                                          "chargeType": "conditional",
                                          "chargeFrequencyCode": 12,
                                          "currencyCode": "EUR",
                                          "conditionList": [
                                            ""
                                          ]
                                        }
                                      ],
                                      "feePolicyList": [
                                        {
                                          "typeCode": 36,
                                          "percent": 5,
                                          "chargeType": "conditional",
                                          "chargeFrequencyCode": 12,
                                          "currencyCode": "EUR",
                                          "conditionList": [
                                            ""
                                          ]
                                        }
                                      ],
                                      "name": "Standard Sylt Residenz Policy"
                                    }
                                  ],
                                  "uri": "strandresidenz-sylt",
                                  "cancellationGracePeriod": {
                                    "hoursAfterBooking": 0,
                                    "weeksBeforeCheckIn": 0
                                  },
                                  "serviceList": [
                                    {
                                      "code": 173,
                                      "price": 19.99,
                                      "exists": false,
                                      "included": false,
                                      "currencyCode": "EUR",
                                      "featureList": [
                                        ""
                                      ],
                                      "typeList": [
                                        0
                                      ],
                                      "itemList": [
                                        0
                                      ],
                                      "operationTimeList": [
                                        {
                                          "start": 23400000,
                                          "end": 50400000,
                                          "monday": false,
                                          "tuesday": false,
                                          "wednesday": false,
                                          "thursday": false,
                                          "friday": false,
                                          "saturday": false,
                                          "sunday": false
                                        }
                                      ]
                                    }
                                  ]
                                },
                                "productList": [
                                  {
                                    "propertyId": "strandresidenz-sylt",
                                    "name": "Standard Amrum",
                                    "mealPlanList": [
                                      14
                                    ],
                                    "roomTypeList": [
                                      "amrum"
                                    ],
                                    "isLOSPricing": false,
                                    "isOBPPricing": false,
                                    "ratePlanList": [
                                      {
                                        "active": false,
                                        "name": "Standard 8436",
                                        "code": "standard-8436",
                                        "pricingList": [
                                          {
                                            "dateTime": 1662595200000,
                                            "occupancy": 1,
                                            "priceList": {
                                              "1": 182,
                                              "2": 364,
                                              "3": 546,
                                              "4": 728,
                                              "5": 910,
                                              "6": 1092,
                                              "7": 1274,
                                              "8": 1456,
                                              "9": 1638,
                                              "10": 1820,
                                              "11": 2002,
                                              "12": 2184,
                                              "13": 2366,
                                              "14": 2548,
                                              "15": 2730,
                                              "16": 2912,
                                              "17": 3094,
                                              "18": 3276,
                                              "19": 3458,
                                              "20": 3640,
                                              "21": 3822,
                                              "22": 4004,
                                              "23": 4186,
                                              "24": 4368,
                                              "25": 4550,
                                              "26": 4732,
                                              "27": 4914,
                                              "28": 5096,
                                              "29": 5278,
                                              "30": 5460
                                            },
                                            "currencyCode": "EUR"
                                          }
                                        ]
                                      }
                                    ],
                                    "policyInfo": {
                                      "checkInTime": 54000000,
                                      "checkOutTime": 43200000,
                                      "totalGuestCount": 10,
                                      "cancellationPolicyList": [
                                        {
                                          "percentAfterReservation": 0,
                                          "nightsAfterReservation": 0,
                                          "deadlineDays": 0,
                                          "deadlineHours": 0,
                                          "percentAfterDeadline": 0,
                                          "nightsAfterDeadline": 0,
                                          "noShowPolicy": "Default"
                                        }
                                      ],
                                      "advanceBookingMin": 365,
                                      "advanceBookingMax": 1,
                                      "petsPolicy": {
                                        "allowed": false,
                                        "byArrangement": false,
                                        "freeOfCharge": false
                                      },
                                      "prepaymentPolicy": "after_reservation_is_made",
                                      "guaranteePolicy": {
                                        "percentAfterReservation": 0,
                                        "nightsAfterReservation": 0,
                                        "deadlineDays": 0,
                                        "deadlineHours": 0,
                                        "percentAfterDeadline": 0,
                                        "nightsAfterDeadline": 0,
                                        "noShowPolicy": "Default"
                                      },
                                      "taxPolicyList": [
                                        {
                                          "typeCode": 36,
                                          "percent": 5,
                                          "chargeType": "conditional",
                                          "chargeFrequencyCode": 12,
                                          "currencyCode": "EUR",
                                          "conditionList": [
                                            ""
                                          ]
                                        }
                                      ],
                                      "feePolicyList": [
                                        {
                                          "typeCode": 36,
                                          "percent": 5,
                                          "chargeType": "conditional",
                                          "chargeFrequencyCode": 12,
                                          "currencyCode": "EUR",
                                          "conditionList": [
                                            ""
                                          ]
                                        }
                                      ],
                                      "name": "Standard Sylt Residenz Policy"
                                    }
                                  }
                                ]
                              }

                              Get a properties details

                              Get all information about a specific property by its ID.
                              Request
                              hide
                              propertyId
                              required string in path
                              The ID of the property
                              • Minimum length is 1.
                              Response
                              hide
                              property
                              guaranteed object
                              An object containing all available base data for the requested property.
                              Show child attributes
                                productList
                                guaranteed array of objects
                                Show child attributes of array element type
                                  get
                                  /properties/{propertyId}
                                  Response
                                  {
                                    "property": {
                                      "code": "strandresidenz-sylt",
                                      "name": "Strandresidenz Sylt",
                                      "currencyCode": "EUR",
                                      "recordCreated": {
                                        "user": "microsoft:user:2f1d8a1b-bae8-4333-8f0f-7ad28af03e3f",
                                        "tenant": "dmo-demo",
                                        "role": "admin",
                                        "time": 1652091332815
                                      },
                                      "recordModified": {
                                        "user": "microsoft:user:2f1d8a1b-bae8-4333-8f0f-7ad28af03e3f",
                                        "tenant": "dmo-demo",
                                        "role": "admin",
                                        "time": 1652091332815
                                      },
                                      "rating": {
                                        "recommendation": 75,
                                        "guestReview": 85
                                      },
                                      "propertyInfo": {
                                        "unitCount": 4,
                                        "messageList": [
                                          {
                                            "languageCode": "en",
                                            "text": "More sea does not work! In a unique location just behind the dunes, less than 100 steps from the beach and the spa promenade, in a prime location on the beach “Nordhedig”, you can enjoy your stay in a small, new 5-star luxury complex (DTV classification) with a total of 4 separate apartments for 2-4 people. The interior has a modern rural style that offers all the amenities. You can find films about the property and individual apartments on our website."
                                          }
                                        ],
                                        "categoryList": [
                                          0
                                        ],
                                        "languageList": [
                                          ""
                                        ],
                                        "location": {
                                          "lng": 8.304857,
                                          "lat": 54.9157118
                                        },
                                        "acceptedPaymentList": [
                                          {
                                            "code": "eccard",
                                            "type": "debitcard"
                                          }
                                        ]
                                      },
                                      "guestInfo": {
                                        "guestAddressRequired": false,
                                        "guestContactNumberRequired": false,
                                        "guestNameListRequired": false,
                                        "hasAgeRestriction": false,
                                        "ageRestrictionMax": 120,
                                        "ageRestrictionMin": 0,
                                        "hasCurfew": false,
                                        "curfewStart": 82800000,
                                        "curfewEnd": 10800000
                                      },
                                      "awardList": [
                                        {
                                          "provider": "star-rating",
                                          "rating": 5
                                        }
                                      ],
                                      "contactList": [
                                        {
                                          "profileType": "physicallocation",
                                          "phoneList": [
                                            {
                                              "number": 494012345,
                                              "typeCode": 1
                                            }
                                          ],
                                          "personList": [
                                            {
                                              "firstName": "Jan",
                                              "lastName": "Kammerath",
                                              "gender": "Male"
                                            }
                                          ],
                                          "emailList": [
                                            ""
                                          ],
                                          "addressList": [
                                            {
                                              "addressLine": "Nordhedig 20",
                                              "usageType": "physical",
                                              "propertyName": "Strandresidenz Sylt",
                                              "companyName": "Meier GmbH",
                                              "cityName": "Sylt",
                                              "postalCode": "25980",
                                              "jobDescription": "Marketing Manager",
                                              "state": "SH",
                                              "countryCode": "DE"
                                            }
                                          ]
                                        }
                                      ],
                                      "areaInfo": {
                                        "attractionList": [
                                          {
                                            "name": "Flughafen Hamburg",
                                            "typeCode": 1,
                                            "distance": 42,
                                            "distanceUnit": "meters"
                                          }
                                        ]
                                      },
                                      "facilityInfo": {
                                        "restaurantList": [
                                          {
                                            "ambianceList": [
                                              ""
                                            ],
                                            "breakfast": false,
                                            "brunch": false,
                                            "dinner": false,
                                            "lunch": false,
                                            "name": "Simple Restaurant",
                                            "cuisineList": [
                                              0
                                            ],
                                            "dietaryOptionList": [
                                              ""
                                            ],
                                            "featureList": [
                                              ""
                                            ],
                                            "messageList": [
                                              {
                                                "languageCode": "en",
                                                "text": "My Restaurant description"
                                              }
                                            ],
                                            "operationTimeList": [
                                              {
                                                "start": 23400000,
                                                "end": 50400000,
                                                "monday": false,
                                                "tuesday": false,
                                                "wednesday": false,
                                                "thursday": false,
                                                "friday": false,
                                                "saturday": false,
                                                "sunday": false
                                              }
                                            ]
                                          }
                                        ],
                                        "guestRoomList": [
                                          {
                                            "isActive": false,
                                            "roomId": "amrum",
                                            "name": "Amrum",
                                            "mediaList": [
                                              {
                                                "isMainImage": false,
                                                "url": "5e3d9d49e9480.jpg",
                                                "sortOrder": 1000,
                                                "tagList": [
                                                  0
                                                ],
                                                "moderationLabelList": [
                                                  ""
                                                ],
                                                "detectionLabelList": [
                                                  ""
                                                ],
                                                "propertyAmenityList": [
                                                  0
                                                ],
                                                "roomAmenityList": [
                                                  0
                                                ]
                                              }
                                            ],
                                            "roomTypeCode": 1,
                                            "isNonSmoking": false,
                                            "amenityList": [
                                              {
                                                "code": 0,
                                                "quantity": 1
                                              }
                                            ],
                                            "messageList": [
                                              {
                                                "languageCode": "",
                                                "text": ""
                                              }
                                            ],
                                            "maxOccupancy": 4,
                                            "maxAdultOccupancy": 2,
                                            "maxChildOccupancy": 4,
                                            "bedCount": 2,
                                            "bedroomCount": 1,
                                            "bathroomCount": 1,
                                            "unitSize": {
                                              "value": 120.93,
                                              "unit": "sqm"
                                            }
                                          }
                                        ]
                                      },
                                      "mediaList": [
                                        {
                                          "isMainImage": false,
                                          "url": "5e3d9d49e9480.jpg",
                                          "sortOrder": 1000,
                                          "tagList": [
                                            0
                                          ],
                                          "moderationLabelList": [
                                            ""
                                          ],
                                          "detectionLabelList": [
                                            ""
                                          ],
                                          "propertyAmenityList": [
                                            0
                                          ],
                                          "roomAmenityList": [
                                            0
                                          ]
                                        }
                                      ],
                                      "geo": {
                                        "de": {
                                          "location": {
                                            "lat": 54.9157118,
                                            "lng": 8.304857
                                          },
                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Deutschland",
                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                          "street_number": "20",
                                          "route": "Nordhedig",
                                          "sublocality": "Westerland",
                                          "sublocality_level_1": "Westerland",
                                          "locality": "Sylt",
                                          "administrative_area_level_3": "Nordfriesland",
                                          "administrative_area_level_1": "Schleswig-Holstein",
                                          "state_code": "SH",
                                          "country": "Deutschland",
                                          "country_code": "DE",
                                          "postal_code": "25980",
                                          "language": "de"
                                        },
                                        "en": {
                                          "location": {
                                            "lat": 54.9157118,
                                            "lng": 8.304857
                                          },
                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Germany",
                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                          "street_number": "20",
                                          "route": "Nordhedig",
                                          "sublocality": "Westerland",
                                          "sublocality_level_1": "Westerland",
                                          "locality": "Sylt",
                                          "administrative_area_level_3": "Nordfriesland",
                                          "administrative_area_level_1": "Schleswig-Holstein",
                                          "state_code": "SH",
                                          "country": "Germany",
                                          "country_code": "DE",
                                          "postal_code": "25980",
                                          "language": "en"
                                        },
                                        "da": {
                                          "location": {
                                            "lat": 54.9157118,
                                            "lng": 8.304857
                                          },
                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Tyskland",
                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                          "street_number": "20",
                                          "route": "Nordhedig",
                                          "sublocality": "Westerland",
                                          "sublocality_level_1": "Westerland",
                                          "locality": "Sylt",
                                          "administrative_area_level_3": "Nordfriesland",
                                          "administrative_area_level_1": "Schleswig-Holstein",
                                          "state_code": "SH",
                                          "country": "Tyskland",
                                          "country_code": "DE",
                                          "postal_code": "25980",
                                          "language": "da"
                                        },
                                        "nl": {
                                          "location": {
                                            "lat": 54.9157118,
                                            "lng": 8.304857
                                          },
                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Duitsland",
                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                          "street_number": "20",
                                          "route": "Nordhedig",
                                          "sublocality": "Westerland",
                                          "sublocality_level_1": "Westerland",
                                          "locality": "Sylt",
                                          "administrative_area_level_3": "Nordfriesland",
                                          "administrative_area_level_1": "Schleswig-Holstein",
                                          "state_code": "SH",
                                          "country": "Duitsland",
                                          "country_code": "DE",
                                          "postal_code": "25980",
                                          "language": "nl"
                                        }
                                      },
                                      "published": false,
                                      "policyList": [
                                        {
                                          "checkInTime": 54000000,
                                          "checkOutTime": 43200000,
                                          "totalGuestCount": 10,
                                          "cancellationPolicyList": [
                                            {
                                              "percentAfterReservation": 0,
                                              "nightsAfterReservation": 0,
                                              "deadlineDays": 0,
                                              "deadlineHours": 0,
                                              "percentAfterDeadline": 0,
                                              "nightsAfterDeadline": 0,
                                              "noShowPolicy": "Default"
                                            }
                                          ],
                                          "advanceBookingMin": 365,
                                          "advanceBookingMax": 1,
                                          "petsPolicy": {
                                            "allowed": false,
                                            "byArrangement": false,
                                            "freeOfCharge": false
                                          },
                                          "prepaymentPolicy": "after_reservation_is_made",
                                          "guaranteePolicy": {
                                            "percentAfterReservation": 0,
                                            "nightsAfterReservation": 0,
                                            "deadlineDays": 0,
                                            "deadlineHours": 0,
                                            "percentAfterDeadline": 0,
                                            "nightsAfterDeadline": 0,
                                            "noShowPolicy": "Default"
                                          },
                                          "taxPolicyList": [
                                            {
                                              "typeCode": 36,
                                              "percent": 5,
                                              "chargeType": "conditional",
                                              "chargeFrequencyCode": 12,
                                              "currencyCode": "EUR",
                                              "conditionList": [
                                                ""
                                              ]
                                            }
                                          ],
                                          "feePolicyList": [
                                            {
                                              "typeCode": 36,
                                              "percent": 5,
                                              "chargeType": "conditional",
                                              "chargeFrequencyCode": 12,
                                              "currencyCode": "EUR",
                                              "conditionList": [
                                                ""
                                              ]
                                            }
                                          ],
                                          "name": "Standard Sylt Residenz Policy"
                                        }
                                      ],
                                      "uri": "strandresidenz-sylt",
                                      "cancellationGracePeriod": {
                                        "hoursAfterBooking": 0,
                                        "weeksBeforeCheckIn": 0
                                      },
                                      "serviceList": [
                                        {
                                          "code": 173,
                                          "price": 19.99,
                                          "exists": false,
                                          "included": false,
                                          "currencyCode": "EUR",
                                          "featureList": [
                                            ""
                                          ],
                                          "typeList": [
                                            0
                                          ],
                                          "itemList": [
                                            0
                                          ],
                                          "operationTimeList": [
                                            {
                                              "start": 23400000,
                                              "end": 50400000,
                                              "monday": false,
                                              "tuesday": false,
                                              "wednesday": false,
                                              "thursday": false,
                                              "friday": false,
                                              "saturday": false,
                                              "sunday": false
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "productList": [
                                      {
                                        "propertyId": "strandresidenz-sylt",
                                        "name": "Standard Amrum",
                                        "mealPlanList": [
                                          14
                                        ],
                                        "roomTypeList": [
                                          "amrum"
                                        ],
                                        "isLOSPricing": false,
                                        "isOBPPricing": false,
                                        "ratePlanList": [
                                          {
                                            "active": false,
                                            "name": "Standard 8436",
                                            "code": "standard-8436",
                                            "pricingList": [
                                              {
                                                "dateTime": 1662595200000,
                                                "occupancy": 1,
                                                "priceList": {
                                                  "1": 182,
                                                  "2": 364,
                                                  "3": 546,
                                                  "4": 728,
                                                  "5": 910,
                                                  "6": 1092,
                                                  "7": 1274,
                                                  "8": 1456,
                                                  "9": 1638,
                                                  "10": 1820,
                                                  "11": 2002,
                                                  "12": 2184,
                                                  "13": 2366,
                                                  "14": 2548,
                                                  "15": 2730,
                                                  "16": 2912,
                                                  "17": 3094,
                                                  "18": 3276,
                                                  "19": 3458,
                                                  "20": 3640,
                                                  "21": 3822,
                                                  "22": 4004,
                                                  "23": 4186,
                                                  "24": 4368,
                                                  "25": 4550,
                                                  "26": 4732,
                                                  "27": 4914,
                                                  "28": 5096,
                                                  "29": 5278,
                                                  "30": 5460
                                                },
                                                "currencyCode": "EUR"
                                              }
                                            ]
                                          }
                                        ],
                                        "policyInfo": {
                                          "checkInTime": 54000000,
                                          "checkOutTime": 43200000,
                                          "totalGuestCount": 10,
                                          "cancellationPolicyList": [
                                            {
                                              "percentAfterReservation": 0,
                                              "nightsAfterReservation": 0,
                                              "deadlineDays": 0,
                                              "deadlineHours": 0,
                                              "percentAfterDeadline": 0,
                                              "nightsAfterDeadline": 0,
                                              "noShowPolicy": "Default"
                                            }
                                          ],
                                          "advanceBookingMin": 365,
                                          "advanceBookingMax": 1,
                                          "petsPolicy": {
                                            "allowed": false,
                                            "byArrangement": false,
                                            "freeOfCharge": false
                                          },
                                          "prepaymentPolicy": "after_reservation_is_made",
                                          "guaranteePolicy": {
                                            "percentAfterReservation": 0,
                                            "nightsAfterReservation": 0,
                                            "deadlineDays": 0,
                                            "deadlineHours": 0,
                                            "percentAfterDeadline": 0,
                                            "nightsAfterDeadline": 0,
                                            "noShowPolicy": "Default"
                                          },
                                          "taxPolicyList": [
                                            {
                                              "typeCode": 36,
                                              "percent": 5,
                                              "chargeType": "conditional",
                                              "chargeFrequencyCode": 12,
                                              "currencyCode": "EUR",
                                              "conditionList": [
                                                ""
                                              ]
                                            }
                                          ],
                                          "feePolicyList": [
                                            {
                                              "typeCode": 36,
                                              "percent": 5,
                                              "chargeType": "conditional",
                                              "chargeFrequencyCode": 12,
                                              "currencyCode": "EUR",
                                              "conditionList": [
                                                ""
                                              ]
                                            }
                                          ],
                                          "name": "Standard Sylt Residenz Policy"
                                        }
                                      }
                                    ]
                                  }

                                  Delete a property

                                  Deletes a specific property by its ID.
                                  Request
                                  hide
                                  propertyId
                                  required string in path
                                  The ID of the property
                                  • Minimum length is 1.
                                  Response
                                  hide
                                  Response is empty.
                                  delete
                                  /properties/{propertyId}

                                  Update a property

                                  Updates a property and replaces it in the inventory
                                  Request
                                  hide
                                  propertyId
                                  required string in path
                                  The ID of the property
                                  • Minimum length is 1.
                                  property
                                  required object in body
                                  Show child attributes
                                    productList
                                    required array of objects in body
                                    Show child attributes of array element type
                                      Response
                                      hide
                                      Response is empty.
                                      put
                                      /properties/{propertyId}
                                      {
                                        "property": {
                                          "code": "strandresidenz-sylt",
                                          "name": "Strandresidenz Sylt",
                                          "currencyCode": "EUR",
                                          "rating": {
                                            "recommendation": 75,
                                            "guestReview": 85
                                          },
                                          "propertyInfo": {
                                            "unitCount": 4,
                                            "messageList": [
                                              {
                                                "languageCode": "en",
                                                "text": "More sea does not work! In a unique location just behind the dunes, less than 100 steps from the beach and the spa promenade, in a prime location on the beach “Nordhedig”, you can enjoy your stay in a small, new 5-star luxury complex (DTV classification) with a total of 4 separate apartments for 2-4 people. The interior has a modern rural style that offers all the amenities. You can find films about the property and individual apartments on our website."
                                              }
                                            ],
                                            "categoryList": [
                                              0
                                            ],
                                            "languageList": [
                                              ""
                                            ],
                                            "location": {
                                              "lng": 8.304857,
                                              "lat": 54.9157118
                                            },
                                            "acceptedPaymentList": [
                                              {
                                                "code": "eccard",
                                                "type": "debitcard"
                                              }
                                            ]
                                          },
                                          "guestInfo": {
                                            "guestAddressRequired": false,
                                            "guestContactNumberRequired": false,
                                            "guestNameListRequired": false,
                                            "hasAgeRestriction": false,
                                            "ageRestrictionMax": 120,
                                            "ageRestrictionMin": 0,
                                            "hasCurfew": false,
                                            "curfewStart": 82800000,
                                            "curfewEnd": 10800000
                                          },
                                          "awardList": [
                                            {
                                              "provider": "star-rating",
                                              "rating": 5
                                            }
                                          ],
                                          "contactList": [
                                            {
                                              "profileType": "physicallocation",
                                              "phoneList": [
                                                {
                                                  "number": 494012345,
                                                  "typeCode": 1
                                                }
                                              ],
                                              "personList": [
                                                {
                                                  "firstName": "Jan",
                                                  "lastName": "Kammerath",
                                                  "gender": "Male"
                                                }
                                              ],
                                              "emailList": [
                                                ""
                                              ],
                                              "addressList": [
                                                {
                                                  "addressLine": "Nordhedig 20",
                                                  "usageType": "physical",
                                                  "propertyName": "Strandresidenz Sylt",
                                                  "companyName": "Meier GmbH",
                                                  "cityName": "Sylt",
                                                  "postalCode": "25980",
                                                  "jobDescription": "Marketing Manager",
                                                  "state": "SH",
                                                  "countryCode": "DE"
                                                }
                                              ]
                                            }
                                          ],
                                          "areaInfo": {
                                            "attractionList": [
                                              {
                                                "name": "Flughafen Hamburg",
                                                "typeCode": 1,
                                                "distance": 42,
                                                "distanceUnit": "meters"
                                              }
                                            ]
                                          },
                                          "facilityInfo": {
                                            "restaurantList": [
                                              {
                                                "ambianceList": [
                                                  ""
                                                ],
                                                "breakfast": false,
                                                "brunch": false,
                                                "dinner": false,
                                                "lunch": false,
                                                "name": "Simple Restaurant",
                                                "cuisineList": [
                                                  0
                                                ],
                                                "dietaryOptionList": [
                                                  ""
                                                ],
                                                "featureList": [
                                                  ""
                                                ],
                                                "messageList": [
                                                  {
                                                    "languageCode": "en",
                                                    "text": "My Restaurant description"
                                                  }
                                                ],
                                                "operationTimeList": [
                                                  {
                                                    "start": 23400000,
                                                    "end": 50400000,
                                                    "monday": false,
                                                    "tuesday": false,
                                                    "wednesday": false,
                                                    "thursday": false,
                                                    "friday": false,
                                                    "saturday": false,
                                                    "sunday": false
                                                  }
                                                ]
                                              }
                                            ],
                                            "guestRoomList": [
                                              {
                                                "isActive": false,
                                                "roomId": "amrum",
                                                "name": "Amrum",
                                                "mediaList": [
                                                  {
                                                    "isMainImage": false,
                                                    "url": "5e3d9d49e9480.jpg",
                                                    "sortOrder": 1000,
                                                    "tagList": [
                                                      0
                                                    ],
                                                    "moderationLabelList": [
                                                      ""
                                                    ],
                                                    "detectionLabelList": [
                                                      ""
                                                    ],
                                                    "propertyAmenityList": [
                                                      0
                                                    ],
                                                    "roomAmenityList": [
                                                      0
                                                    ]
                                                  }
                                                ],
                                                "roomTypeCode": 1,
                                                "isNonSmoking": false,
                                                "amenityList": [
                                                  {
                                                    "code": 0,
                                                    "quantity": 1
                                                  }
                                                ],
                                                "messageList": [
                                                  {
                                                    "languageCode": "",
                                                    "text": ""
                                                  }
                                                ],
                                                "maxOccupancy": 4,
                                                "maxAdultOccupancy": 2,
                                                "maxChildOccupancy": 4,
                                                "bedCount": 2,
                                                "bedroomCount": 1,
                                                "bathroomCount": 1,
                                                "unitSize": {
                                                  "value": 120.93,
                                                  "unit": "sqm"
                                                }
                                              }
                                            ]
                                          },
                                          "mediaList": [
                                            {
                                              "isMainImage": false,
                                              "url": "5e3d9d49e9480.jpg",
                                              "sortOrder": 1000,
                                              "tagList": [
                                                0
                                              ],
                                              "moderationLabelList": [
                                                ""
                                              ],
                                              "detectionLabelList": [
                                                ""
                                              ],
                                              "propertyAmenityList": [
                                                0
                                              ],
                                              "roomAmenityList": [
                                                0
                                              ]
                                            }
                                          ],
                                          "geo": {
                                            "de": {
                                              "location": {
                                                "lat": 54.9157118,
                                                "lng": 8.304857
                                              },
                                              "formatted_address": "Nordhedig 20, 25980 Sylt, Deutschland",
                                              "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                              "street_number": "20",
                                              "route": "Nordhedig",
                                              "sublocality": "Westerland",
                                              "sublocality_level_1": "Westerland",
                                              "locality": "Sylt",
                                              "administrative_area_level_3": "Nordfriesland",
                                              "administrative_area_level_1": "Schleswig-Holstein",
                                              "state_code": "SH",
                                              "country": "Deutschland",
                                              "country_code": "DE",
                                              "postal_code": "25980",
                                              "language": "de"
                                            },
                                            "en": {
                                              "location": {
                                                "lat": 54.9157118,
                                                "lng": 8.304857
                                              },
                                              "formatted_address": "Nordhedig 20, 25980 Sylt, Germany",
                                              "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                              "street_number": "20",
                                              "route": "Nordhedig",
                                              "sublocality": "Westerland",
                                              "sublocality_level_1": "Westerland",
                                              "locality": "Sylt",
                                              "administrative_area_level_3": "Nordfriesland",
                                              "administrative_area_level_1": "Schleswig-Holstein",
                                              "state_code": "SH",
                                              "country": "Germany",
                                              "country_code": "DE",
                                              "postal_code": "25980",
                                              "language": "en"
                                            },
                                            "da": {
                                              "location": {
                                                "lat": 54.9157118,
                                                "lng": 8.304857
                                              },
                                              "formatted_address": "Nordhedig 20, 25980 Sylt, Tyskland",
                                              "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                              "street_number": "20",
                                              "route": "Nordhedig",
                                              "sublocality": "Westerland",
                                              "sublocality_level_1": "Westerland",
                                              "locality": "Sylt",
                                              "administrative_area_level_3": "Nordfriesland",
                                              "administrative_area_level_1": "Schleswig-Holstein",
                                              "state_code": "SH",
                                              "country": "Tyskland",
                                              "country_code": "DE",
                                              "postal_code": "25980",
                                              "language": "da"
                                            },
                                            "nl": {
                                              "location": {
                                                "lat": 54.9157118,
                                                "lng": 8.304857
                                              },
                                              "formatted_address": "Nordhedig 20, 25980 Sylt, Duitsland",
                                              "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                              "street_number": "20",
                                              "route": "Nordhedig",
                                              "sublocality": "Westerland",
                                              "sublocality_level_1": "Westerland",
                                              "locality": "Sylt",
                                              "administrative_area_level_3": "Nordfriesland",
                                              "administrative_area_level_1": "Schleswig-Holstein",
                                              "state_code": "SH",
                                              "country": "Duitsland",
                                              "country_code": "DE",
                                              "postal_code": "25980",
                                              "language": "nl"
                                            }
                                          },
                                          "published": false,
                                          "policyList": [
                                            {
                                              "checkInTime": 54000000,
                                              "checkOutTime": 43200000,
                                              "totalGuestCount": 10,
                                              "cancellationPolicyList": [
                                                {
                                                  "percentAfterReservation": 0,
                                                  "nightsAfterReservation": 0,
                                                  "deadlineDays": 0,
                                                  "deadlineHours": 0,
                                                  "percentAfterDeadline": 0,
                                                  "nightsAfterDeadline": 0,
                                                  "noShowPolicy": "Default"
                                                }
                                              ],
                                              "advanceBookingMin": 365,
                                              "advanceBookingMax": 1,
                                              "petsPolicy": {
                                                "allowed": false,
                                                "byArrangement": false,
                                                "freeOfCharge": false
                                              },
                                              "prepaymentPolicy": "after_reservation_is_made",
                                              "guaranteePolicy": {
                                                "percentAfterReservation": 0,
                                                "nightsAfterReservation": 0,
                                                "deadlineDays": 0,
                                                "deadlineHours": 0,
                                                "percentAfterDeadline": 0,
                                                "nightsAfterDeadline": 0,
                                                "noShowPolicy": "Default"
                                              },
                                              "taxPolicyList": [
                                                {
                                                  "typeCode": 36,
                                                  "percent": 5,
                                                  "chargeType": "conditional",
                                                  "chargeFrequencyCode": 12,
                                                  "currencyCode": "EUR",
                                                  "conditionList": [
                                                    ""
                                                  ]
                                                }
                                              ],
                                              "feePolicyList": [
                                                {
                                                  "typeCode": 36,
                                                  "percent": 5,
                                                  "chargeType": "conditional",
                                                  "chargeFrequencyCode": 12,
                                                  "currencyCode": "EUR",
                                                  "conditionList": [
                                                    ""
                                                  ]
                                                }
                                              ],
                                              "name": "Standard Sylt Residenz Policy"
                                            }
                                          ],
                                          "uri": "strandresidenz-sylt",
                                          "cancellationGracePeriod": {
                                            "hoursAfterBooking": 0,
                                            "weeksBeforeCheckIn": 0
                                          },
                                          "serviceList": [
                                            {
                                              "code": 173,
                                              "price": 19.99,
                                              "exists": false,
                                              "included": false,
                                              "currencyCode": "EUR",
                                              "featureList": [
                                                ""
                                              ],
                                              "typeList": [
                                                0
                                              ],
                                              "itemList": [
                                                0
                                              ],
                                              "operationTimeList": [
                                                {
                                                  "start": 23400000,
                                                  "end": 50400000,
                                                  "monday": false,
                                                  "tuesday": false,
                                                  "wednesday": false,
                                                  "thursday": false,
                                                  "friday": false,
                                                  "saturday": false,
                                                  "sunday": false
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        "productList": [
                                          {
                                            "propertyId": "strandresidenz-sylt",
                                            "name": "Standard Amrum",
                                            "mealPlanList": [
                                              14
                                            ],
                                            "roomTypeList": [
                                              "amrum"
                                            ],
                                            "isLOSPricing": false,
                                            "isOBPPricing": false,
                                            "ratePlanList": [
                                              {
                                                "active": false,
                                                "name": "Standard 8436",
                                                "code": "standard-8436",
                                                "pricingList": [
                                                  {
                                                    "dateTime": 1662595200000,
                                                    "occupancy": 1,
                                                    "priceList": {
                                                      "1": 182,
                                                      "2": 364,
                                                      "3": 546,
                                                      "4": 728,
                                                      "5": 910,
                                                      "6": 1092,
                                                      "7": 1274,
                                                      "8": 1456,
                                                      "9": 1638,
                                                      "10": 1820,
                                                      "11": 2002,
                                                      "12": 2184,
                                                      "13": 2366,
                                                      "14": 2548,
                                                      "15": 2730,
                                                      "16": 2912,
                                                      "17": 3094,
                                                      "18": 3276,
                                                      "19": 3458,
                                                      "20": 3640,
                                                      "21": 3822,
                                                      "22": 4004,
                                                      "23": 4186,
                                                      "24": 4368,
                                                      "25": 4550,
                                                      "26": 4732,
                                                      "27": 4914,
                                                      "28": 5096,
                                                      "29": 5278,
                                                      "30": 5460
                                                    },
                                                    "currencyCode": "EUR"
                                                  }
                                                ]
                                              }
                                            ],
                                            "policyInfo": {
                                              "checkInTime": 54000000,
                                              "checkOutTime": 43200000,
                                              "totalGuestCount": 10,
                                              "cancellationPolicyList": [
                                                {
                                                  "percentAfterReservation": 0,
                                                  "nightsAfterReservation": 0,
                                                  "deadlineDays": 0,
                                                  "deadlineHours": 0,
                                                  "percentAfterDeadline": 0,
                                                  "nightsAfterDeadline": 0,
                                                  "noShowPolicy": "Default"
                                                }
                                              ],
                                              "advanceBookingMin": 365,
                                              "advanceBookingMax": 1,
                                              "petsPolicy": {
                                                "allowed": false,
                                                "byArrangement": false,
                                                "freeOfCharge": false
                                              },
                                              "prepaymentPolicy": "after_reservation_is_made",
                                              "guaranteePolicy": {
                                                "percentAfterReservation": 0,
                                                "nightsAfterReservation": 0,
                                                "deadlineDays": 0,
                                                "deadlineHours": 0,
                                                "percentAfterDeadline": 0,
                                                "nightsAfterDeadline": 0,
                                                "noShowPolicy": "Default"
                                              },
                                              "taxPolicyList": [
                                                {
                                                  "typeCode": 36,
                                                  "percent": 5,
                                                  "chargeType": "conditional",
                                                  "chargeFrequencyCode": 12,
                                                  "currencyCode": "EUR",
                                                  "conditionList": [
                                                    ""
                                                  ]
                                                }
                                              ],
                                              "feePolicyList": [
                                                {
                                                  "typeCode": 36,
                                                  "percent": 5,
                                                  "chargeType": "conditional",
                                                  "chargeFrequencyCode": 12,
                                                  "currencyCode": "EUR",
                                                  "conditionList": [
                                                    ""
                                                  ]
                                                }
                                              ],
                                              "name": "Standard Sylt Residenz Policy"
                                            }
                                          }
                                        ]
                                      }

                                      Get media upload URL

                                      Gets a presigned upload URL to upload media for a property
                                      Request
                                      hide
                                      propertyId
                                      required string in path
                                      The ID of the property
                                      • Minimum length is 1.
                                      filename
                                      required string in body
                                      The filename of the file to upload
                                      • Length must be between 5 and 512.
                                      Response
                                      hide
                                      url
                                      guaranteed string
                                      The presigend URL to upload the media to. Valid for approx. 15 minutes.
                                        post
                                        /properties/{propertyId}/upload-media-url
                                        {
                                          "filename": "restaurant.jpg"
                                        }
                                        Response
                                        {
                                          "url": "https://ota-inventory-media.s3.eu-central-1.amazonaws.com/dmo-demo/strandresidenz-sylt/restaurant.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIAQHEBIAI7VQYQFYE2%2F20230209%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230209T125648Z&X-Amz-Expires=900&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAUaDGV1LWNlbnRyYWwtMSJGMEQCIEEEFA%2F8wyHrJm5fTNER%2Bub1QuXuiPWZhI2kexHnFVDcAiASus4G8YNEZEtR9%2B4oHUZb5TXyItOFn8eXlk5%2FAF4AZCqjAwiO%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F8BEAIaDDAxNTMwMzQ0MzAwNyIMJVzSVbjfi35JvW01KvcCQiOaSlkG5wK0pPCFn6VJZ4tGnU3BUQqmSBcI7nVo0TzlUfyPsHV6rI9RT5YsiAx%2BnWSqPpvJv5iRkf4k%2FDeIBLC%2FFuPHdh5g%2By26Azlrx7NA%2B3MnxuK9Iylh%2Bd3rlL25LCRKqu%2FHYqksuQpjpPr1W0zzhc74E5j5Bb0EyRXMtJTO5oAt%2BTfAM6uM6ZknrkL2wzuExOwqHdTKaW2EDju3%2BSj6XbQIiSO7q%2BnOiIhJY1CIwmFm7wwytBK4Ct7NNblSeq7kfawjSn4rrSnfuXpuBJaIid3rHpJ3hrmX0AeQxMtSyWOizgLJl4HSUQtJagFSmnKC60O2P5XvkgG92kFEnBxijSYq0PVCms%2BCmuTgkqfx%2Fy7qR5Q13i8VELpQDh%2Bk1sGJyfX66mx61NYcjFzvCKn20nCvyxjv%2BN00QzyFVrgiiL6C%2BYsr0rbPVhP9w7NQbc2rviTebzEWKwkwKyXpff2zeUsKoX8e4H6CKzhU5eQekgcI%2F%2Bm4ML7Zk58GOp4BcFzYSIE6CcVFKGbyTk0re1B7CR6SR7ncmC3oM7TuTyJb6VgFPXbpBrPC5PnzSwDlyMGkE6czBM422065WsSHtUu30brKPDRDh6EikmEQ0Q8GjYW5eYToAWll%2FCVoavjxWe0mVWuCgY8C0J8WuJsX5okTqYmkvr%2Bo%2BQ6c1DrdYlXg8Z7zSmKytx%2BuBJi3q07%2Bhz1Du7QJr6a02JSYslc%3D&X-Amz-Signature=85b02585c16354a5b0cf20709195e799181587d6b089a117f2053ec566625d6f&X-Amz-SignedHeaders=host%3Bx-amz-acl&x-amz-acl=public-read"
                                        }

                                        Get a properties availability

                                        Get detailed availability information for a specific property.
                                        Request
                                        hide
                                        propertyId
                                        required string in path
                                        The ID of the property
                                        • Minimum length is 1.
                                        currencyCode
                                        required string in query
                                        The currency in which prices should be returned.
                                        • Allowed values are "AED", "ARS", "AUD", "AZN", "BGN", ... (show 45 more)
                                        Response
                                        hide
                                        availabilityList
                                        guaranteed array of objects
                                        An array of objects describing the available booking options.
                                        Show child attributes of array element type
                                          get
                                          /properties/{propertyId}/availability?currencyCode=EUR
                                          Response
                                          {
                                            "availabilityList": [
                                              {
                                                "ratePlanList": [
                                                  {
                                                    "active": false,
                                                    "name": "Standard 8436",
                                                    "code": "standard-8436",
                                                    "pricingList": [
                                                      {
                                                        "dateTime": 1662595200000,
                                                        "occupancy": 1,
                                                        "priceList": {
                                                          "1": 182,
                                                          "2": 364,
                                                          "3": 546,
                                                          "4": 728,
                                                          "5": 910,
                                                          "6": 1092,
                                                          "7": 1274,
                                                          "8": 1456,
                                                          "9": 1638,
                                                          "10": 1820,
                                                          "11": 2002,
                                                          "12": 2184,
                                                          "13": 2366,
                                                          "14": 2548,
                                                          "15": 2730,
                                                          "16": 2912,
                                                          "17": 3094,
                                                          "18": 3276,
                                                          "19": 3458,
                                                          "20": 3640,
                                                          "21": 3822,
                                                          "22": 4004,
                                                          "23": 4186,
                                                          "24": 4368,
                                                          "25": 4550,
                                                          "26": 4732,
                                                          "27": 4914,
                                                          "28": 5096,
                                                          "29": 5278,
                                                          "30": 5460
                                                        },
                                                        "currencyCode": "EUR"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "name": "Standard",
                                                "mealPlanList": [
                                                  14
                                                ],
                                                "roomTypeList": [
                                                  "amrum"
                                                ]
                                              }
                                            ]
                                          }

                                          Get a bookings details

                                          Get all information about a specific booking by its ID.
                                          Request
                                          hide
                                          recordLocator
                                          required string in path
                                          The booking code (technical name is record locator).
                                          • Minimum length is 1.
                                          Response
                                          hide
                                          recordLocator
                                          guaranteed string
                                          A unique identifier for this booking.
                                            sequence
                                            guaranteed number
                                            A unique identifier for this version of the booking.
                                              content
                                              guaranteed object
                                              Show child attributes
                                                get
                                                /bookings/{recordLocator}
                                                Response
                                                {
                                                  "recordLocator": "35e0MZUmw5qHWSYEdQgxMO",
                                                  "sequence": 1,
                                                  "content": {
                                                    "booking": {
                                                      "externalRecordLocator": "HWSYEdQgxadwWQWWD",
                                                      "comment": "Booking for a family of 4 for the summer holidays.",
                                                      "marketingOptIn": false,
                                                      "languageCode": "en-gb",
                                                      "customer": {
                                                        "firstName": "John",
                                                        "lastName": "Doe",
                                                        "email": "johndoe@example.com",
                                                        "phone": "+1234567890",
                                                        "addressLine": "123 Main St",
                                                        "city": "London",
                                                        "postalCode": "SW1A 2AA",
                                                        "countryCode": "GB",
                                                        "state": "London"
                                                      },
                                                      "guestList": [
                                                        {
                                                          "firstName": "Jane",
                                                          "lastName": "Doe",
                                                          "age": 17,
                                                          "phone": "+1234567890"
                                                        }
                                                      ],
                                                      "payment": {
                                                        "charges": [
                                                          {
                                                            "status": "succeeded",
                                                            "date": 1638835200,
                                                            "amount": 100,
                                                            "currency": "USD",
                                                            "refunds": [
                                                              {
                                                                "status": "succeeded",
                                                                "date": 1638835200,
                                                                "amount": 50,
                                                                "currency": "USD"
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    },
                                                    "quotation": {
                                                      "arrival": 1638835200,
                                                      "return": 1639094400,
                                                      "unitId": "unit-123",
                                                      "productName": "Beachfront Villa",
                                                      "ratePlanCode": "rate-plan-1",
                                                      "mealPlanList": [
                                                        0
                                                      ],
                                                      "lengthOfStay": 7,
                                                      "occupancy": 2,
                                                      "adultCount": 2,
                                                      "childCount": 0,
                                                      "feeTaxList": {
                                                        "taxList": [
                                                          {
                                                            "typeCode": 36,
                                                            "percent": 5,
                                                            "chargeType": "conditional",
                                                            "chargeFrequencyCode": 12,
                                                            "currencyCode": "EUR",
                                                            "conditionList": [
                                                              ""
                                                            ],
                                                            "calculated": {
                                                              "amount": 29.06,
                                                              "currencyCode": "EUR"
                                                            }
                                                          }
                                                        ],
                                                        "feeList": [
                                                          {
                                                            "typeCode": 36,
                                                            "percent": 5,
                                                            "chargeType": "conditional",
                                                            "chargeFrequencyCode": 12,
                                                            "currencyCode": "EUR",
                                                            "conditionList": [
                                                              ""
                                                            ],
                                                            "calculated": {
                                                              "amount": 29.06,
                                                              "currencyCode": "EUR"
                                                            }
                                                          }
                                                        ],
                                                        "includedTotal": 58.12
                                                      },
                                                      "cancellationList": {
                                                        "afterReservation": {
                                                          "date": 1638837500,
                                                          "amount": 91,
                                                          "percent": 50
                                                        },
                                                        "beforeArrival": {
                                                          "date": 1638837500,
                                                          "amount": 91,
                                                          "percent": 50
                                                        }
                                                      },
                                                      "guaranteeList": {
                                                        "afterReservation": {
                                                          "date": 1638837500,
                                                          "amount": 91,
                                                          "percent": 50
                                                        },
                                                        "beforeArrival": {
                                                          "date": 1638837500,
                                                          "amount": 91,
                                                          "percent": 50
                                                        }
                                                      },
                                                      "gracePeriodDeadline": 1656580040,
                                                      "price": {
                                                        "amount": 182,
                                                        "currencyCode": "EUR"
                                                      },
                                                      "netPrice": {
                                                        "amount": 182,
                                                        "currencyCode": "EUR"
                                                      },
                                                      "baseCurrency": {
                                                        "amount": 205,
                                                        "currencyCode": "USD"
                                                      },
                                                      "policy": {
                                                        "checkInTime": 54000000,
                                                        "checkOutTime": 43200000,
                                                        "totalGuestCount": 10,
                                                        "cancellationPolicyList": [
                                                          {
                                                            "percentAfterReservation": 0,
                                                            "nightsAfterReservation": 0,
                                                            "deadlineDays": 0,
                                                            "deadlineHours": 0,
                                                            "percentAfterDeadline": 0,
                                                            "nightsAfterDeadline": 0,
                                                            "noShowPolicy": "Default"
                                                          }
                                                        ],
                                                        "advanceBookingMin": 365,
                                                        "advanceBookingMax": 1,
                                                        "petsPolicy": {
                                                          "allowed": false,
                                                          "byArrangement": false,
                                                          "freeOfCharge": false
                                                        },
                                                        "prepaymentPolicy": "after_reservation_is_made",
                                                        "guaranteePolicy": {
                                                          "percentAfterReservation": 0,
                                                          "nightsAfterReservation": 0,
                                                          "deadlineDays": 0,
                                                          "deadlineHours": 0,
                                                          "percentAfterDeadline": 0,
                                                          "nightsAfterDeadline": 0,
                                                          "noShowPolicy": "Default"
                                                        },
                                                        "taxPolicyList": [
                                                          {
                                                            "typeCode": 36,
                                                            "percent": 5,
                                                            "chargeType": "conditional",
                                                            "chargeFrequencyCode": 12,
                                                            "currencyCode": "EUR",
                                                            "conditionList": [
                                                              ""
                                                            ]
                                                          }
                                                        ],
                                                        "feePolicyList": [
                                                          {
                                                            "typeCode": 36,
                                                            "percent": 5,
                                                            "chargeType": "conditional",
                                                            "chargeFrequencyCode": 12,
                                                            "currencyCode": "EUR",
                                                            "conditionList": [
                                                              ""
                                                            ]
                                                          }
                                                        ],
                                                        "name": "Standard Sylt Residenz Policy"
                                                      },
                                                      "cancellationCharge": {
                                                        "available": false,
                                                        "amount": 25,
                                                        "currencyCode": "EUR"
                                                      }
                                                    },
                                                    "property": {
                                                      "code": "strandresidenz-sylt",
                                                      "name": "Strandresidenz Sylt",
                                                      "currencyCode": "EUR",
                                                      "recordCreated": {
                                                        "user": "microsoft:user:2f1d8a1b-bae8-4333-8f0f-7ad28af03e3f",
                                                        "tenant": "dmo-demo",
                                                        "role": "admin",
                                                        "time": 1652091332815
                                                      },
                                                      "recordModified": {
                                                        "user": "microsoft:user:2f1d8a1b-bae8-4333-8f0f-7ad28af03e3f",
                                                        "tenant": "dmo-demo",
                                                        "role": "admin",
                                                        "time": 1652091332815
                                                      },
                                                      "rating": {
                                                        "recommendation": 75,
                                                        "guestReview": 85
                                                      },
                                                      "propertyInfo": {
                                                        "unitCount": 4,
                                                        "messageList": [
                                                          {
                                                            "languageCode": "en",
                                                            "text": "More sea does not work! In a unique location just behind the dunes, less than 100 steps from the beach and the spa promenade, in a prime location on the beach “Nordhedig”, you can enjoy your stay in a small, new 5-star luxury complex (DTV classification) with a total of 4 separate apartments for 2-4 people. The interior has a modern rural style that offers all the amenities. You can find films about the property and individual apartments on our website."
                                                          }
                                                        ],
                                                        "categoryList": [
                                                          0
                                                        ],
                                                        "languageList": [
                                                          ""
                                                        ],
                                                        "location": {
                                                          "lng": 8.304857,
                                                          "lat": 54.9157118
                                                        },
                                                        "acceptedPaymentList": [
                                                          {
                                                            "code": "eccard",
                                                            "type": "debitcard"
                                                          }
                                                        ]
                                                      },
                                                      "guestInfo": {
                                                        "guestAddressRequired": false,
                                                        "guestContactNumberRequired": false,
                                                        "guestNameListRequired": false,
                                                        "hasAgeRestriction": false,
                                                        "ageRestrictionMax": 120,
                                                        "ageRestrictionMin": 0,
                                                        "hasCurfew": false,
                                                        "curfewStart": 82800000,
                                                        "curfewEnd": 10800000
                                                      },
                                                      "awardList": [
                                                        {
                                                          "provider": "star-rating",
                                                          "rating": 5
                                                        }
                                                      ],
                                                      "contactList": [
                                                        {
                                                          "profileType": "physicallocation",
                                                          "phoneList": [
                                                            {
                                                              "number": 494012345,
                                                              "typeCode": 1
                                                            }
                                                          ],
                                                          "personList": [
                                                            {
                                                              "firstName": "Jan",
                                                              "lastName": "Kammerath",
                                                              "gender": "Male"
                                                            }
                                                          ],
                                                          "emailList": [
                                                            ""
                                                          ],
                                                          "addressList": [
                                                            {
                                                              "addressLine": "Nordhedig 20",
                                                              "usageType": "physical",
                                                              "propertyName": "Strandresidenz Sylt",
                                                              "companyName": "Meier GmbH",
                                                              "cityName": "Sylt",
                                                              "postalCode": "25980",
                                                              "jobDescription": "Marketing Manager",
                                                              "state": "SH",
                                                              "countryCode": "DE"
                                                            }
                                                          ]
                                                        }
                                                      ],
                                                      "areaInfo": {
                                                        "attractionList": [
                                                          {
                                                            "name": "Flughafen Hamburg",
                                                            "typeCode": 1,
                                                            "distance": 42,
                                                            "distanceUnit": "meters"
                                                          }
                                                        ]
                                                      },
                                                      "facilityInfo": {
                                                        "restaurantList": [
                                                          {
                                                            "ambianceList": [
                                                              ""
                                                            ],
                                                            "breakfast": false,
                                                            "brunch": false,
                                                            "dinner": false,
                                                            "lunch": false,
                                                            "name": "Simple Restaurant",
                                                            "cuisineList": [
                                                              0
                                                            ],
                                                            "dietaryOptionList": [
                                                              ""
                                                            ],
                                                            "featureList": [
                                                              ""
                                                            ],
                                                            "messageList": [
                                                              {
                                                                "languageCode": "en",
                                                                "text": "My Restaurant description"
                                                              }
                                                            ],
                                                            "operationTimeList": [
                                                              {
                                                                "start": 23400000,
                                                                "end": 50400000,
                                                                "monday": false,
                                                                "tuesday": false,
                                                                "wednesday": false,
                                                                "thursday": false,
                                                                "friday": false,
                                                                "saturday": false,
                                                                "sunday": false
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "guestRoomList": [
                                                          {
                                                            "isActive": false,
                                                            "roomId": "amrum",
                                                            "name": "Amrum",
                                                            "mediaList": [
                                                              {
                                                                "isMainImage": false,
                                                                "url": "5e3d9d49e9480.jpg",
                                                                "sortOrder": 1000,
                                                                "tagList": [
                                                                  0
                                                                ],
                                                                "moderationLabelList": [
                                                                  ""
                                                                ],
                                                                "detectionLabelList": [
                                                                  ""
                                                                ],
                                                                "propertyAmenityList": [
                                                                  0
                                                                ],
                                                                "roomAmenityList": [
                                                                  0
                                                                ]
                                                              }
                                                            ],
                                                            "roomTypeCode": 1,
                                                            "isNonSmoking": false,
                                                            "amenityList": [
                                                              {
                                                                "code": 0,
                                                                "quantity": 1
                                                              }
                                                            ],
                                                            "messageList": [
                                                              {
                                                                "languageCode": "",
                                                                "text": ""
                                                              }
                                                            ],
                                                            "maxOccupancy": 4,
                                                            "maxAdultOccupancy": 2,
                                                            "maxChildOccupancy": 4,
                                                            "bedCount": 2,
                                                            "bedroomCount": 1,
                                                            "bathroomCount": 1,
                                                            "unitSize": {
                                                              "value": 120.93,
                                                              "unit": "sqm"
                                                            }
                                                          }
                                                        ]
                                                      },
                                                      "mediaList": [
                                                        {
                                                          "isMainImage": false,
                                                          "url": "5e3d9d49e9480.jpg",
                                                          "sortOrder": 1000,
                                                          "tagList": [
                                                            0
                                                          ],
                                                          "moderationLabelList": [
                                                            ""
                                                          ],
                                                          "detectionLabelList": [
                                                            ""
                                                          ],
                                                          "propertyAmenityList": [
                                                            0
                                                          ],
                                                          "roomAmenityList": [
                                                            0
                                                          ]
                                                        }
                                                      ],
                                                      "geo": {
                                                        "de": {
                                                          "location": {
                                                            "lat": 54.9157118,
                                                            "lng": 8.304857
                                                          },
                                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Deutschland",
                                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                                          "street_number": "20",
                                                          "route": "Nordhedig",
                                                          "sublocality": "Westerland",
                                                          "sublocality_level_1": "Westerland",
                                                          "locality": "Sylt",
                                                          "administrative_area_level_3": "Nordfriesland",
                                                          "administrative_area_level_1": "Schleswig-Holstein",
                                                          "state_code": "SH",
                                                          "country": "Deutschland",
                                                          "country_code": "DE",
                                                          "postal_code": "25980",
                                                          "language": "de"
                                                        },
                                                        "en": {
                                                          "location": {
                                                            "lat": 54.9157118,
                                                            "lng": 8.304857
                                                          },
                                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Germany",
                                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                                          "street_number": "20",
                                                          "route": "Nordhedig",
                                                          "sublocality": "Westerland",
                                                          "sublocality_level_1": "Westerland",
                                                          "locality": "Sylt",
                                                          "administrative_area_level_3": "Nordfriesland",
                                                          "administrative_area_level_1": "Schleswig-Holstein",
                                                          "state_code": "SH",
                                                          "country": "Germany",
                                                          "country_code": "DE",
                                                          "postal_code": "25980",
                                                          "language": "en"
                                                        },
                                                        "da": {
                                                          "location": {
                                                            "lat": 54.9157118,
                                                            "lng": 8.304857
                                                          },
                                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Tyskland",
                                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                                          "street_number": "20",
                                                          "route": "Nordhedig",
                                                          "sublocality": "Westerland",
                                                          "sublocality_level_1": "Westerland",
                                                          "locality": "Sylt",
                                                          "administrative_area_level_3": "Nordfriesland",
                                                          "administrative_area_level_1": "Schleswig-Holstein",
                                                          "state_code": "SH",
                                                          "country": "Tyskland",
                                                          "country_code": "DE",
                                                          "postal_code": "25980",
                                                          "language": "da"
                                                        },
                                                        "nl": {
                                                          "location": {
                                                            "lat": 54.9157118,
                                                            "lng": 8.304857
                                                          },
                                                          "formatted_address": "Nordhedig 20, 25980 Sylt, Duitsland",
                                                          "place_id": "ChIJVaxqTevetEcRyfs8PGHK6mw",
                                                          "street_number": "20",
                                                          "route": "Nordhedig",
                                                          "sublocality": "Westerland",
                                                          "sublocality_level_1": "Westerland",
                                                          "locality": "Sylt",
                                                          "administrative_area_level_3": "Nordfriesland",
                                                          "administrative_area_level_1": "Schleswig-Holstein",
                                                          "state_code": "SH",
                                                          "country": "Duitsland",
                                                          "country_code": "DE",
                                                          "postal_code": "25980",
                                                          "language": "nl"
                                                        }
                                                      },
                                                      "published": false,
                                                      "policyList": [
                                                        {
                                                          "checkInTime": 54000000,
                                                          "checkOutTime": 43200000,
                                                          "totalGuestCount": 10,
                                                          "cancellationPolicyList": [
                                                            {
                                                              "percentAfterReservation": 0,
                                                              "nightsAfterReservation": 0,
                                                              "deadlineDays": 0,
                                                              "deadlineHours": 0,
                                                              "percentAfterDeadline": 0,
                                                              "nightsAfterDeadline": 0,
                                                              "noShowPolicy": "Default"
                                                            }
                                                          ],
                                                          "advanceBookingMin": 365,
                                                          "advanceBookingMax": 1,
                                                          "petsPolicy": {
                                                            "allowed": false,
                                                            "byArrangement": false,
                                                            "freeOfCharge": false
                                                          },
                                                          "prepaymentPolicy": "after_reservation_is_made",
                                                          "guaranteePolicy": {
                                                            "percentAfterReservation": 0,
                                                            "nightsAfterReservation": 0,
                                                            "deadlineDays": 0,
                                                            "deadlineHours": 0,
                                                            "percentAfterDeadline": 0,
                                                            "nightsAfterDeadline": 0,
                                                            "noShowPolicy": "Default"
                                                          },
                                                          "taxPolicyList": [
                                                            {
                                                              "typeCode": 36,
                                                              "percent": 5,
                                                              "chargeType": "conditional",
                                                              "chargeFrequencyCode": 12,
                                                              "currencyCode": "EUR",
                                                              "conditionList": [
                                                                ""
                                                              ]
                                                            }
                                                          ],
                                                          "feePolicyList": [
                                                            {
                                                              "typeCode": 36,
                                                              "percent": 5,
                                                              "chargeType": "conditional",
                                                              "chargeFrequencyCode": 12,
                                                              "currencyCode": "EUR",
                                                              "conditionList": [
                                                                ""
                                                              ]
                                                            }
                                                          ],
                                                          "name": "Standard Sylt Residenz Policy"
                                                        }
                                                      ],
                                                      "uri": "strandresidenz-sylt",
                                                      "cancellationGracePeriod": {
                                                        "hoursAfterBooking": 0,
                                                        "weeksBeforeCheckIn": 0
                                                      },
                                                      "serviceList": [
                                                        {
                                                          "code": 173,
                                                          "price": 19.99,
                                                          "exists": false,
                                                          "included": false,
                                                          "currencyCode": "EUR",
                                                          "featureList": [
                                                            ""
                                                          ],
                                                          "typeList": [
                                                            0
                                                          ],
                                                          "itemList": [
                                                            0
                                                          ],
                                                          "operationTimeList": [
                                                            {
                                                              "start": 23400000,
                                                              "end": 50400000,
                                                              "monday": false,
                                                              "tuesday": false,
                                                              "wednesday": false,
                                                              "thursday": false,
                                                              "friday": false,
                                                              "saturday": false,
                                                              "sunday": false
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    "status": "CONFIRMED",
                                                    "created": 1638835200,
                                                    "url": "https://dmo-de.lodgeademo.com/meine-buchungen/CsRnyYgsK0yA5DxKVtQHjT.html?accessKey=S7KgQciKVs4o1W8KWzZxkNFdF1rLaK0lRupJji6Wq4"
                                                  }
                                                }

                                                List (filtered) bookings

                                                Lists bookings, optionally filtered by multiple criterias. All set filters are AND chained.
                                                Request
                                                show
                                                createdFrom
                                                optional number in query
                                                The earliest created timestamp as UNIX timestamp with seconds precision.
                                                  createdUntil
                                                  optional number in query
                                                  The latest created timestamp as UNIX timestamp with seconds precision.
                                                    arrivalFrom
                                                    optional number in query
                                                    The earliest arrival time/date as UNIX timestamp with seconds precision.
                                                      arrivalUntil
                                                      optional number in query
                                                      The latest arrival time/date as UNIX timestamp with seconds precision.
                                                        customerName
                                                        optional string in query
                                                        The last name of the customer. Will find all last names tha include the given char sequence regardless of capitalization, e.g. "Stein" will also match "Steinhauer".
                                                          propertyCode
                                                          optional string in query
                                                          The code (ID) of a property. Performs an exact match.
                                                            pageToken
                                                            optional string in query
                                                            The page token from the last response to load the subsequent page.
                                                              Response
                                                              hide
                                                              list
                                                              guaranteed array of objects
                                                              Show child attributes of array element type
                                                                pageToken
                                                                optional string
                                                                The page token to pass in the subsequent call to retrieve more results, only returned if more results are available.
                                                                  get
                                                                  /bookings?createdFrom=1638835200&createdUntil=1640165953&arrivalFrom=1638835200&arrivalUntil=1640165953&customerName=Stein&propertyCode=Stein&pageToken=eyJ0ZW5hbnRDb2RlIjoiZG1vLWRlbW8iLCJuYW1lIjoiTGFuZGhhdXMgVHJlc2tlcnNhbmQiLCJwcm9wZXJ0eUlkIjoibGFuZGhhdXMtdHJlc2tlcnNhbmQifQ%3D%3D
                                                                  Response
                                                                  {
                                                                    "list": [
                                                                      {
                                                                        "recordLocator": "CsRnyYgsK0yA5DxKVtQHjT",
                                                                        "customerName": "Test",
                                                                        "arrival": 1657670400,
                                                                        "propertyName": "Strandresidenz Sylt",
                                                                        "propertyCode": "strandresidenz-sylt",
                                                                        "created": 1656493641,
                                                                        "status": "CONFIRMED"
                                                                      }
                                                                    ],
                                                                    "pageToken": "eyJ0ZW5hbnRDb2RlIjoiZG1vLWRlbW8iLCJuYW1lIjoiTGFuZGhhdXMgVHJlc2tlcnNhbmQiLCJwcm9wZXJ0eUlkIjoibGFuZGhhdXMtdHJlc2tlcnNhbmQifQ=="
                                                                  }

                                                                  Update a booking status

                                                                  Updates the status of a booking. Only bookings that currently do not have the status CANCELLED and are not completed (return date passed) can be updated.
                                                                  Request
                                                                  hide
                                                                  recordLocator
                                                                  required string in path
                                                                  The booking code (technical name is record locator).
                                                                  • Minimum length is 1.
                                                                  newStatus
                                                                  required string in body
                                                                  The new status for the booking.
                                                                  • Allowed array members are "CONFIRMED", "CONFIRMED_PENDING", "PENDING", "REQUESTED", "CANCELLED".
                                                                  Response
                                                                  hide
                                                                  Response is empty.
                                                                  put
                                                                  /bookings/{recordLocator}/status
                                                                  {
                                                                    "newStatus": "CANCELLED"
                                                                  }

                                                                  Appendix

                                                                  The appendix includes the data definitions such as currency codes, language codes and many more. LODGEA follows ISO and OpenTravel standards to ensure maximum compatibility across the globe and with other systems. You can also refer to the ISO standard of the corresponding data definition.

                                                                  Attraction category codes

                                                                  CodeName
                                                                  1airport
                                                                  2amusementpark
                                                                  3aquarium
                                                                  4auditorium
                                                                  5beach
                                                                  6boatdock
                                                                  7bridge
                                                                  8busstation
                                                                  9businesslocation
                                                                  10canal
                                                                  11carrentallocation
                                                                  12casino
                                                                  13cemetery
                                                                  14church
                                                                  15concerthall
                                                                  16conferencecenter
                                                                  17conventioncenter
                                                                  18entertainmentdistrict
                                                                  19factory
                                                                  20fairground
                                                                  21farm
                                                                  22gallery
                                                                  23historicbuilding
                                                                  24hospital
                                                                  25lake
                                                                  26landmark
                                                                  27library
                                                                  28marina
                                                                  29market
                                                                  30monument
                                                                  31mountain
                                                                  32museum
                                                                  33ocean
                                                                  34orchard
                                                                  35palace
                                                                  36park
                                                                  37pier
                                                                  38racetrack
                                                                  39recreationcenter
                                                                  40resort
                                                                  41restaurant
                                                                  42river
                                                                  43school
                                                                  44shoppingmall
                                                                  45skiarea
                                                                  46stadium
                                                                  47store
                                                                  48studio
                                                                  49subwaystation
                                                                  50theatercinema
                                                                  51trainstation
                                                                  52trolleystation
                                                                  53university
                                                                  54waterpark
                                                                  55waterfront
                                                                  56winery
                                                                  57zoo
                                                                  58cityevent
                                                                  59festival
                                                                  60tournament
                                                                  61tour
                                                                  62other
                                                                  63college
                                                                  64nightlife
                                                                  65shopping
                                                                  66sports
                                                                  67citycenter
                                                                  68citydowntown
                                                                  69localcompany
                                                                  70cruiseport
                                                                  71livetheatre
                                                                  72arena
                                                                  73bar
                                                                  74bay
                                                                  75cathedral
                                                                  76corporateoffices
                                                                  77educationalinstitution
                                                                  78financialdistrict
                                                                  79financialinstitution
                                                                  80medicalfacility
                                                                  81mosque
                                                                  82synagogue
                                                                  83suburb
                                                                  84armybase
                                                                  85commercialdistrict
                                                                  86touristsite
                                                                  87miscellaneous
                                                                  88agricultural
                                                                  89archeological
                                                                  90botanicalgarden
                                                                  91bowling
                                                                  92culturalcenter
                                                                  93equestriancenter
                                                                  94handicraftcenter
                                                                  95naturalattraction
                                                                  96performingartcenter
                                                                  97planetariumsciencecenter
                                                                  98cablecars
                                                                  99company
                                                                  100factorybusinesstour
                                                                  101nighttimeentertainment
                                                                  102localbusstop
                                                                  103conventionandvisitorsbureau
                                                                  104art
                                                                  105music
                                                                  106statenationalpark
                                                                  107exhibitionconferencecenter
                                                                  108noncomercialairport
                                                                  109navalbase
                                                                  110militarybase
                                                                  90001freeway
                                                                  90002skitrail
                                                                  90003skilift
                                                                  90004golfcourse
                                                                  90005hikingtrail
                                                                  90006bakery
                                                                  90007biketrail
                                                                  90008publicswimmingpool
                                                                  90009nearestneighbor
                                                                  90010taxistand

                                                                  Breakfast item codes

                                                                  CodeName
                                                                  5001Bread
                                                                  5002Pastries
                                                                  5003Pancakes
                                                                  5004Butter
                                                                  5005Cheese
                                                                  5006Cold meat
                                                                  5007Eggs
                                                                  5008Yogurt
                                                                  5009Fruits
                                                                  5010Coffee
                                                                  5011Tea
                                                                  5012Hot chocolate
                                                                  5013Champagne
                                                                  5014A la carte menu
                                                                  5015Local specialities
                                                                  5016Cooked/warm meals
                                                                  5017Fruit juice
                                                                  5018Jam
                                                                  5019Cereal

                                                                  Breakfast type codes

                                                                  CodeName
                                                                  5001Continental
                                                                  5002Italian
                                                                  5003Full english
                                                                  5004Vegetarian
                                                                  5005Vegan
                                                                  5006Halal
                                                                  5007Gluten free
                                                                  5008Kosher
                                                                  5009Asian
                                                                  5010American
                                                                  5011A la carte
                                                                  5012Buffet

                                                                  Charge type codes

                                                                  CodeName
                                                                  1Per day
                                                                  2Per hour
                                                                  7Per person
                                                                  10Per minute
                                                                  12Per stay
                                                                  17Per week
                                                                  19Per night
                                                                  20Per person per stay
                                                                  21Per person per night
                                                                  25Per room
                                                                  31Per unit
                                                                  5000Charges may apply
                                                                  5001Charges are applicable
                                                                  5002Charges may apply
                                                                  5010Per adult
                                                                  5011Per child
                                                                  5012Per infant
                                                                  5013Per senior
                                                                  5014Per bottle
                                                                  5015Per glass
                                                                  5016Per ticket
                                                                  5017Per vehicle
                                                                  90010Per adult per night
                                                                  90011Per adult per day
                                                                  90012Per child per night
                                                                  90013Per child per day

                                                                  Currency codes

                                                                  The following currencies and thus currency codes are supported by the system. Currency codes in LODGEA are defined in ISO 4217. The supported currency codes can be found in the LODGEA Management Console. Although currencies like the U.S. dollar USD, Euro EUR, Pound sterling GBP and Swiss franc CHF will always exist and thus be supported, other currencies might vanish over time. An example being the Croatian kuna HRK which is phased out after Croatia joined the Eurozone and adopted the Euro EUR.

                                                                  Fee type codes

                                                                  CodeName
                                                                  2City hotel fee
                                                                  9Maintenance fee
                                                                  11Package fee
                                                                  12Resort fee
                                                                  14Service charge
                                                                  16Surcharge
                                                                  27Miscellaneous
                                                                  29Early checkout fee
                                                                  31Extra person charge
                                                                  32Banquet service fee
                                                                  33Room service fee
                                                                  34Local fee
                                                                  37Crib fee
                                                                  38Rollaway fee
                                                                  40Pet sanitation fee
                                                                  41Not known
                                                                  42Child rollaway charge
                                                                  44Extra child charge
                                                                  45Standard food and beverage gratuity
                                                                  47Adult rollaway fee
                                                                  51Food
                                                                  52Total surcharges
                                                                  53State cost recovery fee
                                                                  54Miscellaneous fee
                                                                  55Destination amenity fee
                                                                  56Refundable pet fee
                                                                  5000Environment fee
                                                                  5003Municipality fee
                                                                  5005Public transit day ticket
                                                                  5006Heritage charge
                                                                  5009Cleaning fee
                                                                  5010Towel charge
                                                                  5011Electricity fee
                                                                  5012Bed linen fee
                                                                  5013Gas fee
                                                                  5014Oil fee
                                                                  5015Wood fee
                                                                  5016Water usage fee
                                                                  5017Transfer fee
                                                                  5018Linen package fee
                                                                  5019Heating fee
                                                                  5020Air conditioning fee
                                                                  5021Kitchen linen fee
                                                                  5022Housekeeping fee
                                                                  5023Airport shuttle fee
                                                                  5024Shuttle boat fee
                                                                  5025Sea plane fee
                                                                  5026Ski pass
                                                                  5027Final cleaning fee
                                                                  5028Wristband fee
                                                                  5029Visa support fee
                                                                  5030Water park fee
                                                                  5031Club card fee
                                                                  5032Conservation fee
                                                                  5033Credit card fee
                                                                  5035Internet fee
                                                                  5036Parking fee
                                                                  20001Cancellation fee

                                                                  Image type codes

                                                                  CodeName
                                                                  1Shower
                                                                  2Toilet
                                                                  3Property building
                                                                  4Patio
                                                                  5Nearby landmark
                                                                  6Staff
                                                                  7Restaurant/places to eat
                                                                  8Communal lounge/ TV room
                                                                  10Facade/entrance
                                                                  11Spring
                                                                  13Bed
                                                                  14Off site
                                                                  37Food close-up
                                                                  41Day
                                                                  42Night
                                                                  43People
                                                                  50Property logo or sign
                                                                  55Neighbourhood
                                                                  61Natural landscape
                                                                  70Activities
                                                                  74Bird's eye view
                                                                  81Winter
                                                                  82Summer
                                                                  87BBQ facilities
                                                                  89Billiard
                                                                  90Bowling
                                                                  94Casino
                                                                  95Place of worship
                                                                  96Children play ground
                                                                  97Darts
                                                                  100Fishing
                                                                  102Game Room
                                                                  103Garden
                                                                  104Golfcourse
                                                                  106Horse-riding
                                                                  107Hot Spring Bath
                                                                  108Hot Tub
                                                                  112Karaoke
                                                                  113Library
                                                                  114Massage
                                                                  115Minigolf
                                                                  116Nightclub / DJ
                                                                  124Sauna
                                                                  125On-site shops
                                                                  128Ski School
                                                                  131Skiing
                                                                  133Snorkeling
                                                                  134Solarium
                                                                  137Squash
                                                                  141Table tennis
                                                                  143Steam room
                                                                  153Bathroom
                                                                  154TV and multimedia
                                                                  155Coffee/tea facilities
                                                                  156View (from property/room)
                                                                  157Balcony/Terrace
                                                                  158Kitchen or kitchenette
                                                                  159Living room
                                                                  160Lobby or reception
                                                                  161Lounge or bar
                                                                  164Spa and wellness centre/facilities
                                                                  165Fitness centre/facilities
                                                                  167Food and drinks
                                                                  172Other
                                                                  173Photo of the whole room
                                                                  177Business facilities
                                                                  178Banquet/Function facilities
                                                                  179Decorative detail
                                                                  182Seating area
                                                                  183Floor plan
                                                                  184Dining area
                                                                  185Beach
                                                                  186Aqua park
                                                                  187Tennis court
                                                                  188Windsurfing
                                                                  189Canoeing
                                                                  190Hiking
                                                                  191Cycling
                                                                  192Diving
                                                                  193Kids's club
                                                                  194Evening entertainment
                                                                  197Logo/Certificate/Sign
                                                                  198Animals
                                                                  199Bedroom
                                                                  204Communal kitchen
                                                                  205Autumn
                                                                  240On site
                                                                  241Meeting/conference room
                                                                  242Food
                                                                  245Text overlay
                                                                  246Pets
                                                                  247Guests
                                                                  248City view
                                                                  249Garden view
                                                                  250Lake view
                                                                  251Landmark view
                                                                  252Mountain view
                                                                  253Pool view
                                                                  254River view
                                                                  255Sea view
                                                                  256Street view
                                                                  257Area and facilities
                                                                  258Supermarket/grocery shop
                                                                  259Shopping Area
                                                                  260Swimming pool
                                                                  261Sports
                                                                  262Entertainment
                                                                  263Meals
                                                                  264Breakfast
                                                                  265Continental breakfast
                                                                  266Buffet breakfast
                                                                  267Asian breakfast
                                                                  268Italian breakfast
                                                                  269English/Irish breakfast
                                                                  270American breakfast
                                                                  271Lunch
                                                                  272Dinner
                                                                  273Drinks
                                                                  276Seasons
                                                                  277Time of day
                                                                  278Location
                                                                  279Sunrise
                                                                  280Sunset
                                                                  281Children
                                                                  282Young children
                                                                  283Older children
                                                                  284Group of guests
                                                                  285Cot
                                                                  286Bunk bed
                                                                  287Certificate/Award
                                                                  289Open Air Bath
                                                                  290Public Bath
                                                                  291Family

                                                                  Language codes (general)

                                                                  The two-letter language codes used are defined in ISO 639-1. LODGEA supports a variety of languages, but the customer is required to pick the desired languages when setting up the system. You can therefore not expect every customer to support every language. Check the Management Console for the supported languages.

                                                                  Language codes (spoken)

                                                                  These language codes are selectable when creating or editing a property and setting the spoken languages. They largely overlap with the general language codes but have additional country specific codes.

                                                                  CodeName
                                                                  afAfrikaans
                                                                  arArabic
                                                                  azAzerbaijani
                                                                  beBelarusian
                                                                  bgBulgarian
                                                                  caCatalan
                                                                  csCzech
                                                                  daDanish
                                                                  deGerman
                                                                  elGreek
                                                                  enEnglish (UK)
                                                                  en-gbEnglish (UK)
                                                                  en-usEnglish (American)
                                                                  esSpanish
                                                                  es-arSpanish (Argentine)
                                                                  etEstonian
                                                                  frFrench
                                                                  fiFinnish
                                                                  heHebrew
                                                                  hiHindi
                                                                  hrCroatian
                                                                  huHungarian
                                                                  idIndonesian
                                                                  isIcelandic
                                                                  itItalian
                                                                  jaJapanese
                                                                  kmKhmer
                                                                  koKorean
                                                                  loLao
                                                                  ltLithuanian
                                                                  lvLatvian
                                                                  msMalay
                                                                  nlDutch
                                                                  noNorwegian
                                                                  plPolish
                                                                  ptPortuguese
                                                                  pt-brPortuguese (Brazilian)
                                                                  pt-ptPortuguese
                                                                  roRomanian
                                                                  ruRussian
                                                                  skSlovak
                                                                  slSlovenian
                                                                  srSerbian
                                                                  svSwedish
                                                                  tlTagalog
                                                                  thThai
                                                                  trTurkish
                                                                  ukUkrainian
                                                                  viVietnamese
                                                                  xaSpanish (Argentine)
                                                                  xbPortuguese (Brazilian)
                                                                  xsSpanish (South American)
                                                                  xtChinese (Cantonese)
                                                                  xuEnglish (American)
                                                                  zhChinese (Mandarin)
                                                                  zh-cnChinese (Simplified)
                                                                  zh-twChinese (Traditional)

                                                                  Language codes (Marketplace)

                                                                  The Marketplace booking process will not support all languages since the languages are restricted by what the Marketplace suppliers can offer. The Marketplace currently supports the following languages.

                                                                  CodeName
                                                                  arArabic
                                                                  csCzech
                                                                  daDanish
                                                                  deGerman
                                                                  elGreek
                                                                  enEnglish
                                                                  esSpanish
                                                                  fiFinnish
                                                                  frFrench
                                                                  huHungarian
                                                                  idIndonesian
                                                                  isIcelandic
                                                                  itItalian
                                                                  jaJapanese
                                                                  koKorean
                                                                  msMalay
                                                                  noNorwegian
                                                                  nlDutch
                                                                  plPolish
                                                                  ptPortugese
                                                                  ruRussian
                                                                  skSlovak
                                                                  svSlovenian
                                                                  thThai
                                                                  trTurkish
                                                                  viVietnamese
                                                                  zhChinese (Mandarin)

                                                                  Location types

                                                                  The system performs a geo data lookup for all properties imported into the system. That geo data is primarily used for search and the URL names of properties and destinations. It aggregates properties under one common set of geo information including a geographical hierarchy. The following location types are used and available through the API.

                                                                  TypeNameExample
                                                                  formatted_addressFormatted AddressNordhedig 20 25980 Sylt Deutschland
                                                                  place_idPlace IDChIJVaxqTevetEcRyfs8PGHK6mw
                                                                  localityLocalitySylt
                                                                  administrative_area_level_1Administrative Area Level 1Schleswig-Holstein
                                                                  administrative_area_level_2Administrative Area Level 2-
                                                                  administrative_area_level_3Administrative Area Level 3Nordfriesland
                                                                  administrative_area_level_4Administrative Area Level 4-
                                                                  administrative_area_level_5Administrative Area Level 5-
                                                                  state_codeState CodeSH
                                                                  countryCountryDeutschland
                                                                  country_codeCountry CodeDE
                                                                  postal_codePostal Code25980
                                                                  languageLanguagede
                                                                  natural_featureNatural FeatureSylt
                                                                  establishmentEstablishmentSylt
                                                                  sublocalitySublocalityWesterland
                                                                  sublocality_level_1Sublocality Level 1-
                                                                  sublocality_level_2Sublocality Level 2-
                                                                  sublocality_level_3Sublocality Level 3-
                                                                  sublocality_level_4Sublocality Level 4-
                                                                  sublocality_level_5Sublocality Level 5-
                                                                  streetNumberStreet Number20
                                                                  routeRouteNordhedig

                                                                  Main cuisine codes

                                                                  CodeName
                                                                   1American
                                                                   2French
                                                                   3Italian
                                                                   4Seafood
                                                                   5Indian
                                                                   6Asian
                                                                   7Pan Pacific
                                                                   8Mexican
                                                                   9Greek
                                                                   10Thai
                                                                   11Chinese
                                                                   12Vietnamese
                                                                   13Middle Eastern
                                                                   14Japanese
                                                                   15Moroccan
                                                                   16Deli
                                                                   17European
                                                                   18Ethiopian
                                                                   19Spanish
                                                                   20Tapas
                                                                   21Afghan
                                                                   22Turkish
                                                                   23Russian
                                                                   24German
                                                                   25Southwest
                                                                   26TexMex
                                                                   27California
                                                                   28Hawaiian
                                                                   29Irish
                                                                   30Scottish
                                                                   31English
                                                                   32Lebanese
                                                                   33Argentinean
                                                                   34Brazilian
                                                                   35Caribbean
                                                                   36Mongolian
                                                                   37Southern
                                                                   38Soul food
                                                                   39Barbeque
                                                                   40Cajun
                                                                   41Creole
                                                                   42Korean
                                                                   43Latin American
                                                                   44Steak houses
                                                                   45Coffee shop
                                                                   46Continental
                                                                   47Eclectic
                                                                   48Fast food
                                                                   49International
                                                                   50Jewish
                                                                   51Mediterranean
                                                                   52Other
                                                                   53Pizza
                                                                   54Sandwiches
                                                                   55South American
                                                                   56Swiss
                                                                   57Vegetarian
                                                                   58Halal
                                                                   59Asian-Fusion
                                                                   60Pub
                                                                   61Bavarian
                                                                   62High-tea
                                                                   63Muslim
                                                                   64Polynesian
                                                                   65Scandinavian
                                                                   66Austrian
                                                                   67Modern Australian
                                                                   68Kosher
                                                                   69Pacific rim
                                                                   70Mixed - cafeteria
                                                                   71Iranian
                                                                   72Modern Azerbaijan
                                                                   73Indonesian
                                                                   74Grill
                                                                   75Canadian
                                                                   76Polish
                                                                   77Multiple
                                                                   78African
                                                                   79Belgian
                                                                   80Portuguese
                                                                   81Country fare
                                                                   82Australian
                                                                   83Cantonese
                                                                   84Columbian
                                                                   85Cuban
                                                                   86Dim Sum
                                                                   87Fusion
                                                                   88Global
                                                                   89Hamburgers
                                                                   90Hungarian
                                                                   91Icelandic
                                                                   92Mandarin
                                                                   93New England
                                                                   94Oriental
                                                                   95Pan-Asian
                                                                   96Puerto Rican
                                                                   97Steak and seafood
                                                                   98Sushi
                                                                   99Swedish
                                                                   100Taiwanese
                                                                   101Tandoori
                                                                   102Tibetan
                                                                   103Hawaiian
                                                                   104Locally Inspired
                                                                   105Author Cuisine
                                                                   106Szechwan
                                                                   107Gluten-free
                                                                   108Lactose-free
                                                                   109Eritrean
                                                                   110Burmese
                                                                   111Vegan
                                                                   112Raw
                                                                   5000British
                                                                   5001Cambodian
                                                                   5002Cantonese
                                                                   5003Croation
                                                                   5004Dutch
                                                                   5005Hungarian
                                                                   5006Local
                                                                   5007Malaysian
                                                                   5008Nepalese
                                                                   5009Peruvian
                                                                   5010Sichuan
                                                                   5011Singaporean
                                                                   5012South African
                                                                   5013Sushi

                                                                  Meal plan type codes

                                                                  The following meal plans are supported and they are defined by the Meal Plan Type (MPT) in the Code Lists of the OpenTravel standard. If no meal plan is provided, then the value will either be 0 or 14 (Room only). The meal plan is usually attached to a product and defines what meal plan or board type is included in the provided product or rate.

                                                                  CodeName
                                                                  0(NONE)
                                                                  1All inclusive
                                                                  2American
                                                                  3Bed & breakfast
                                                                  4Buffet breakfast
                                                                  5Caribbean breakfast
                                                                  6Continental breakfast
                                                                  7English breakfast
                                                                  8European plan
                                                                  9Family plan
                                                                  10Full board
                                                                  11Full breakfast
                                                                  12Half board
                                                                  14Room only
                                                                  15Self catering
                                                                  16Bermuda
                                                                  17Dinner bed and breakfast plan
                                                                  18Family American
                                                                  19Breakfast
                                                                  20Modified
                                                                  21Lunch
                                                                  22Dinner
                                                                  23Breakfast & lunch
                                                                  24Lunch & Dinner
                                                                  900013/4 Plan

                                                                  Payment types

                                                                  CodeTypeName
                                                                  amexcreditcardAmerican Express
                                                                  visacreditcardVisa
                                                                  mastercardcreditcardMastercard
                                                                  dinerscreditcardDiners Club
                                                                  jcbcreditcardJCB
                                                                  maestrodebitcardMaestro
                                                                  discovercreditcardDiscover
                                                                  bancontactpaymentserviceBancontact
                                                                  cashonlycashCash only, no cards accepted
                                                                  bankcarddebitcardBankcard
                                                                  cartasipaymentserviceCartaSi
                                                                  argencardpaymentserviceArgencard
                                                                  cabalcreditcardCabal
                                                                  redcomprapaymentserviceRed Compra
                                                                  othercreditcardOther cards
                                                                  greatwallcreditcardGreat Wall
                                                                  dragonpaypaymentserviceDragonpay
                                                                  eftpospaymentserviceEFTPOS
                                                                  hipercardcreditcardHipercard
                                                                  unionpaydebitdebitcardUnionPay debit card
                                                                  eccarddebitcardEC-card
                                                                  bccarddebitcardBC-card
                                                                  mastercardvirtualdebitcardMastercard Virtual
                                                                  mastercardgoogledebitcardMastercard Google Wallet
                                                                  unionpaycreditcreditcardUnionPay credit card

                                                                  Property class type codes

                                                                  The property class type is defined by the Property Class Type (PCT) in the Code Lists of the OpenTravel standard. The following codes are currently supported by the system and include extensions commonly adopted by the market. The property class defines the type of the property (e.g. Hotel or Vacation Rental).

                                                                  CodeName
                                                                  1All suite
                                                                  2All-Inclusive resort
                                                                  3Apartment
                                                                  4Bed and breakfast
                                                                  5Cabin or bungalow
                                                                  6Campground
                                                                  7Chalet
                                                                  8Condominium
                                                                  9Conference center
                                                                  10Corporate
                                                                  11Corporate business transient
                                                                  12Cruise
                                                                  13Extended stay
                                                                  14Ferry
                                                                  15Guest farm
                                                                  16Guest house limited service
                                                                  17Health spa
                                                                  18Holiday resort
                                                                  19Hostel
                                                                  20Hotel
                                                                  21Inn
                                                                  22Lodge
                                                                  23Meeting resort
                                                                  24Meeting/Convention
                                                                  25Mobile-home
                                                                  26Monastery
                                                                  27Motel
                                                                  28Ranch
                                                                  29Residential apartment
                                                                  30Resort
                                                                  31Sailing ship
                                                                  32Self catering accommodation
                                                                  33Tent
                                                                  34Vacation home
                                                                  35Villa
                                                                  36Wildlife reserve
                                                                  37Castle
                                                                  38Convention Network Property
                                                                  39Golf
                                                                  40Pension
                                                                  41Ski
                                                                  42Spa
                                                                  43Time share
                                                                  44Boatel
                                                                  45Boutique
                                                                  46Efficiency/studio
                                                                  47Full service
                                                                  48Historical
                                                                  49Limited service
                                                                  50Recreational vehicle park
                                                                  51Charm hotel
                                                                  52Manor
                                                                  53Vacation rental
                                                                  54Economy
                                                                  55Midscale
                                                                  56Upscale
                                                                  57Luxury
                                                                  58Union
                                                                  59Leisure
                                                                  60Wholesale
                                                                  61Transient
                                                                  62Other
                                                                  5000ApartHotel
                                                                  5001Riad
                                                                  5002Ryokan
                                                                  5003Love Hotel
                                                                  5004Homestay
                                                                  5005Japanese-style Business Hotel
                                                                  5006Holiday Home
                                                                  5007Country house
                                                                  5008Capsule Hotel
                                                                  5009Holiday Park

                                                                  Service codes

                                                                  The service codes describe the services and amenities that are available in the entire property. The system currently supports the codes below which follow the Hotel Amenity Code (HAC) defined the Code Lists of the OpenTravel standard. In addition LODGEA uses extensions of these code lists that are commonly adopted by the market and thus considered market standard.

                                                                  CodeName
                                                                  124-hour front desk
                                                                  224-hour room service
                                                                  324-hour security
                                                                  4Adjoining rooms
                                                                  5Air conditioning
                                                                  6Airline desk
                                                                  7ATM/Cash machine
                                                                  8Baby sitting
                                                                  9BBQ/Picnic area
                                                                  10Bilingual staff
                                                                  11Bookstore
                                                                  12Boutiques/stores
                                                                  13Brailed elevators
                                                                  14Business library
                                                                  15Car rental desk
                                                                  16Casino
                                                                  17Check cashing policy
                                                                  18Check-in kiosk
                                                                  19Cocktail lounge
                                                                  20Coffee shop
                                                                  21Coin operated laundry
                                                                  22Concierge desk
                                                                  23Concierge floor
                                                                  24Conference facilities
                                                                  25Courtyard
                                                                  26Currency exchange
                                                                  27Desk with electrical outlet
                                                                  28Doctor on call
                                                                  29Door man
                                                                  30Driving range
                                                                  31Drugstore/pharmacy
                                                                  32Duty free shop
                                                                  33Elevators
                                                                  34Executive floor
                                                                  35Exercise gym
                                                                  36Express check-in
                                                                  37Express check-out
                                                                  38Family plan
                                                                  39Florist
                                                                  40Folios
                                                                  41Free airport shuttle
                                                                  42Free parking
                                                                  43Free transportation
                                                                  44Game room
                                                                  45Gift/News stand
                                                                  46Hairdresser/barber
                                                                  47Accessible facilities
                                                                  48Health club
                                                                  49Heated pool
                                                                  50Housekeeping - daily
                                                                  51Housekeeping - weekly
                                                                  52Ice machine
                                                                  53Indoor parking
                                                                  54Indoor pool
                                                                  55Jacuzzi
                                                                  56Jogging track
                                                                  57Kennels
                                                                  58Laundry/Valet service
                                                                  59Liquor store
                                                                  60Live entertainment
                                                                  61Massage services
                                                                  62Nightclub
                                                                  63Off-Site parking
                                                                  64On-Site parking
                                                                  65Outdoor parking
                                                                  66Outdoor pool
                                                                  67Package/Parcel services
                                                                  68Parking
                                                                  69Photocopy center
                                                                  70Playground
                                                                  71Pool
                                                                  72Poolside snack bar
                                                                  73Public address system
                                                                  74Ramp access
                                                                  75Recreational vehicle parking
                                                                  76Restaurant
                                                                  77Room service
                                                                  78Safe deposit box
                                                                  79Sauna
                                                                  80Security
                                                                  81Shoe shine stand
                                                                  82Shopping mall
                                                                  83Solarium
                                                                  84Spa
                                                                  85Sports bar
                                                                  86Steam bath
                                                                  87Storage space
                                                                  88Sundry/Convenience store
                                                                  89Technical concierge
                                                                  90Theatre desk
                                                                  91Tour/sightseeing desk
                                                                  92Translation services
                                                                  93Travel agency
                                                                  94Truck parking
                                                                  95Valet cleaning
                                                                  96Dry cleaning
                                                                  97Valet parking
                                                                  98Vending machines
                                                                  99Video tapes
                                                                  100Wakeup service
                                                                  101Wheelchair access
                                                                  102Whirlpool
                                                                  103Multilingual staff
                                                                  104Wedding services
                                                                  105Banquet facilities
                                                                  106Bell staff/porter
                                                                  107Beauty shop/salon
                                                                  108Complimentary self service laundry
                                                                  109Direct dial telephone
                                                                  110Female traveler room/floor
                                                                  111Pharmacy
                                                                  112Stables
                                                                  113120 AC
                                                                  114120 DC
                                                                  115220 AC
                                                                  116Accessible parking
                                                                  117220 DC
                                                                  118Barbeque grills
                                                                  119Women's clothing
                                                                  120Men's clothing
                                                                  121Children's clothing
                                                                  122Shops and commercial services
                                                                  123Video games
                                                                  124Sports bar open for lunch
                                                                  125Sports bar open for dinner
                                                                  126Room service - full menu
                                                                  127Room service - limited menu
                                                                  128Room service - limited hours
                                                                  129Valet same day dry cleaning
                                                                  130Body scrub
                                                                  131Body wrap
                                                                  132Public area air conditioned
                                                                  133Efolio available to company
                                                                  134Individual Efolio available
                                                                  135Video review billing
                                                                  136Butler service
                                                                  137Complimentary in-room coffee or tea
                                                                  138Complimentary buffet breakfast
                                                                  139Complimentary cocktails
                                                                  140Complimentary coffee in lobby
                                                                  141Complimentary continental breakfast
                                                                  142Complimentary full american breakfast
                                                                  143Dinner delivery service from local restaurant
                                                                  144Complimentary newspaper delivered to room
                                                                  145Complimentary newspaper in lobby
                                                                  146Complimentary shoeshine
                                                                  147Evening reception
                                                                  148Front desk
                                                                  149Grocery shopping service available
                                                                  150Halal food available
                                                                  151Kosher food available
                                                                  152Limousine service
                                                                  153Managers reception
                                                                  154Medical Facilities Service
                                                                  155Telephone jack adaptor available
                                                                  156All-inclusive meal plan
                                                                  157Buffet breakfast
                                                                  158Communal bar area
                                                                  159Continental breakfast
                                                                  160Full meal plan
                                                                  161Full american breakfast
                                                                  162Meal plan available
                                                                  163Modified american meal plan
                                                                  164Food and beverage outlets
                                                                  165Lounges/bars
                                                                  166Barber shop
                                                                  167Video checkout
                                                                  168Onsite laundry
                                                                  16924-hour food & beverage kiosk
                                                                  170Concierge lounge
                                                                  171Parking fee managed by hotel
                                                                  172Transportation
                                                                  173Breakfast served in restaurant
                                                                  174Lunch served in restaurant
                                                                  175Dinner served in restaurant
                                                                  176Full service housekeeping
                                                                  177Limited service housekeeping
                                                                  178High speed internet access for laptop in public areas
                                                                  179Wireless internet connection in public areas
                                                                  180Additional services/amenities/facilities on property
                                                                  181Transportation services - local area
                                                                  182Transportation services - local office
                                                                  183DVD/video rental
                                                                  184Parking lot
                                                                  185Parking deck
                                                                  186Street side parking
                                                                  187Cocktail lounge with entertainment
                                                                  188Cocktail lounge with light fare
                                                                  189Motorcycle parking
                                                                  190Phone services
                                                                  191Ballroom
                                                                  192Bus parking
                                                                  193Children's play area
                                                                  194Children's nursery
                                                                  195Disco
                                                                  196Early check-in
                                                                  197Locker room
                                                                  198Non-smoking rooms (generic)
                                                                  199Train access
                                                                  200Aerobics instruction
                                                                  201Baggage hold
                                                                  202Bicycle rentals
                                                                  203Dietician
                                                                  204Late check-out available
                                                                  205Pet-sitting services
                                                                  206Prayer mats
                                                                  207Sports trainer
                                                                  208Turndown service
                                                                  209DVDs/videos - children
                                                                  210Bank
                                                                  211Lobby coffee service
                                                                  212Banking services
                                                                  213Stairwells
                                                                  214Pet amenities available
                                                                  215Exhibition/convention floor
                                                                  216Long term parking
                                                                  217Children not allowed
                                                                  218Children welcome
                                                                  219Courtesy car
                                                                  220Hotel does not provide pornographic films/TV
                                                                  221Hotspots
                                                                  222Free high speed internet connection
                                                                  223Internet services
                                                                  224Pets allowed
                                                                  225Gourmet highlights
                                                                  226Catering services
                                                                  227Complimentary breakfast
                                                                  228Business center
                                                                  229Business services
                                                                  230Secured parking
                                                                  231Racquetball
                                                                  232Snow sports
                                                                  233Tennis court
                                                                  234Water sports
                                                                  235Child programs
                                                                  236Golf
                                                                  237Horseback riding
                                                                  238Oceanfront
                                                                  239Beachfront
                                                                  240Hair dryer
                                                                  241Ironing board
                                                                  242Heated guest rooms
                                                                  243Toilet
                                                                  244Parlor
                                                                  245Video game player
                                                                  246Thalassotherapy
                                                                  247Private dining for groups
                                                                  248Hearing impaired services
                                                                  249Carryout breakfast
                                                                  250Deluxe continental breakfast
                                                                  251Hot continental breakfast
                                                                  252Hot breakfast
                                                                  253Private pool
                                                                  254Connecting rooms
                                                                  255Data port
                                                                  256Exterior corridors
                                                                  257Gulf view
                                                                  258Accessible rooms
                                                                  259High speed internet access
                                                                  260Interior corridors
                                                                  261High speed wireless
                                                                  262Kitchenette
                                                                  263Private bath or shower
                                                                  264Fire safety compliant
                                                                  265Welcome drink
                                                                  266Boarding pass print-out available
                                                                  267Printing services available
                                                                  268All public areas non-smoking
                                                                  269Meeting rooms
                                                                  270Movies in room
                                                                  271Secretarial service
                                                                  272Snow skiing
                                                                  273Water skiing
                                                                  274Fax service
                                                                  275Great room
                                                                  276Lobby
                                                                  277Multiple phone lines billed separately
                                                                  278Umbrellas
                                                                  279Gas station
                                                                  280Grocery store
                                                                  28124-hour coffee shop
                                                                  282Airport shuttle service
                                                                  283Luggage service
                                                                  284Piano Bar
                                                                  285VIP security
                                                                  286Complimentary wireless internet
                                                                  287Concierge breakfast
                                                                  288Same gender floor
                                                                  289Children programs
                                                                  290Building meets local, state and country building codes
                                                                  291Internet browser On TV
                                                                  292Newspaper
                                                                  293Parking - controlled access gates to enter parking area
                                                                  294Hotel safe deposit box (not room safe box)
                                                                  295Storage space available – fee
                                                                  296Type of entrances to guest rooms
                                                                  297Beverage/cocktail
                                                                  298Cell phone rental
                                                                  299Coffee/tea
                                                                  300Early check in guarantee
                                                                  301Food and beverage discount
                                                                  302Late check out guarantee
                                                                  303Room upgrade confirmed
                                                                  304Room upgrade on availability
                                                                  305Shuttle to local businesses
                                                                  306Shuttle to local attractions
                                                                  307Social hour
                                                                  308Video billing
                                                                  309Welcome gift
                                                                  310Hypoallergenic rooms
                                                                  311Room air filtration
                                                                  312Smoke-free property
                                                                  313Water purification system in use
                                                                  314Poolside service
                                                                  315Clothing store
                                                                  316Electric car charging stations
                                                                  317Office rental
                                                                  318Piano
                                                                  319Incoming fax
                                                                  320Outgoing fax
                                                                  321Semi-private space
                                                                  322Loading dock
                                                                  323Baby kit
                                                                  324Children's breakfast
                                                                  325Cloakroom service
                                                                  326Coffee lounge
                                                                  327Events ticket service
                                                                  328Late check-in
                                                                  329Limited parking
                                                                  330Outdoor summer bar/café
                                                                  331No parking available
                                                                  332Beer garden
                                                                  333Garden lounge bar
                                                                  334Summer terrace
                                                                  335Winter terrace
                                                                  336Roof terrace
                                                                  337Beach bar
                                                                  338Helicopter service
                                                                  339Ferry
                                                                  340Tapas bar
                                                                  341Café bar
                                                                  342Snack bar
                                                                  343Guestroom wired internet
                                                                  344Guestroom wireless internet
                                                                  345Fitness center
                                                                  348Health and beauty services
                                                                  349Mobile/Digital Check-in
                                                                  350Mobile/Digital Check-out
                                                                  351Choose a room
                                                                  5000Breakfast in the room
                                                                  5001Public transport tickets
                                                                  5002Bikes available (free)
                                                                  5003Outdoor furniture
                                                                  5004Outdoor fireplace
                                                                  5005Garden
                                                                  5006Terrace
                                                                  5007Sun terrace
                                                                  5008Chapel/shrine
                                                                  5009Shared lounge/TV area
                                                                  5010Ironing service
                                                                  5011Trouser press
                                                                  5012Designated smoking area
                                                                  5013Pet basket
                                                                  5014Pet bowls
                                                                  5015Beach
                                                                  5016Bowling
                                                                  5017Darts
                                                                  5018Fishing
                                                                  5020Hiking
                                                                  5021Minigolf
                                                                  5022Snorkeling
                                                                  5023Squash
                                                                  5024Windsurfing
                                                                  5025Billiard
                                                                  5026Table tennis
                                                                  5027Canoeing
                                                                  5028Ski-to-door access
                                                                  5029Diving
                                                                  5030Tennis equipment
                                                                  5031Badminton equipment
                                                                  5032Cycling
                                                                  5033Ski storage
                                                                  5034Ski school
                                                                  5035Ski equipment hire (on site)
                                                                  5036Ski pass vendor
                                                                  5037Private beach area
                                                                  5039Rooms/Facilities for Disabled
                                                                  5040Hair dresser-beautician
                                                                  5041Family Rooms
                                                                  5042Viproom facilities
                                                                  5043Bridal Suite
                                                                  5044Spa & Wellness Centre
                                                                  5045Karaoke
                                                                  5046Soundproof-rooms
                                                                  5047Packed Lunches
                                                                  5048Ticket service
                                                                  5049Entertainment Staff
                                                                  5050Private Check-in/Check-out
                                                                  5051Special Diet Menus (on request)
                                                                  5052Vending Machine (drinks)
                                                                  5053Hot Spring Bath
                                                                  5054Kids' club
                                                                  5055Minimarket on site
                                                                  5056Water park
                                                                  5057Adult only
                                                                  5058Open-air bath
                                                                  5059Public bath
                                                                  5060Water slide
                                                                  5061Board games/puzzles
                                                                  5062Book/DVD/Music library for children
                                                                  5063Indoor play area
                                                                  5064Kids' outdoor play equipment
                                                                  5065Baby safety gates
                                                                  5066Children television networks
                                                                  5067Kid meals
                                                                  5068Kid-friendly buffet
                                                                  5069Pool towels
                                                                  5070Wine/Champagne
                                                                  5071Bottle of water
                                                                  5072Fruits
                                                                  5073Chocolate/Cookies
                                                                  5074Strollers
                                                                  5075On-site coffee house
                                                                  5076Sun loungers or beach chairs
                                                                  5077Sun umbrellas
                                                                  5078Picnic area
                                                                  5079Beauty Services
                                                                  5080Spa Facilities
                                                                  5081Steam room
                                                                  5082Spa lounge/relaxation area
                                                                  5083Foot bath
                                                                  5084Spa/wellness packages
                                                                  5085Massage chair
                                                                  5086Fitness
                                                                  5087Yoga classes
                                                                  5088Fitness classes
                                                                  5089Personal trainer
                                                                  5090Fitness/spa locker rooms
                                                                  5091Kids pool
                                                                  5092Shuttle Service
                                                                  5093Temporary art galleries
                                                                  5094Pub crawls
                                                                  5095Stand-up comedy
                                                                  5096Movie nights
                                                                  5097Walking tours
                                                                  5098Bike tours
                                                                  5099Themed dinner nights
                                                                  5100Happy hour
                                                                  5101Tour or class about local culture
                                                                  5102Cooking class
                                                                  5103Live music/performance
                                                                  5104Live sports events (broadcast)
                                                                  5105Archery
                                                                  5106Aerobics
                                                                  5107Bingo
                                                                  5108Ski Shuttle
                                                                  5109Outdoor Swimming Pool (all year)
                                                                  5110Outdoor Swimming Pool (seasonal)
                                                                  5111Indoor Swimming Pool (all year)
                                                                  5112Indoor Swimming Pool (seasonal)
                                                                  5113Swimming pool toys
                                                                  5114Rooftop pool
                                                                  5115Infinity pool
                                                                  5116Pool with view
                                                                  5117Salt-water pool
                                                                  5118Plunge pool
                                                                  5119Pool bar
                                                                  5120Shallow end pool
                                                                  5121Pool cover
                                                                  5122Fence around pool
                                                                  5123Airport Shuttle (surcharge)
                                                                  5124Property is wheel chair accessible
                                                                  5125Toilet with grab rails
                                                                  5126Higher level toilet
                                                                  5127Low bathroom sink
                                                                  5128Bathroom emergency pull cord
                                                                  5129Visual aids: Braille
                                                                  5130Visual aids: Tactile Signs
                                                                  5131Auditory Guidance
                                                                  5132Back massage
                                                                  5133Neck massage
                                                                  5134Foot massage
                                                                  5135Couples massage
                                                                  5136Head massage
                                                                  5137Hand massage
                                                                  5138Full body massage
                                                                  5139Facial treatments
                                                                  5140Waxing services
                                                                  5141Make up services
                                                                  5142Hair treatments
                                                                  5143Manicure
                                                                  5144Pedicure
                                                                  5145Hair cut
                                                                  5146Hair colouring
                                                                  5147Hair styling
                                                                  5148Body Treatments
                                                                  5149Body scrub
                                                                  5150Body wrap
                                                                  5151Light therapy
                                                                  5152Shuttle Service (free)
                                                                  5153Shuttle Service (surcharge)
                                                                  5154Swimming pool
                                                                  5156No Single-Use Toiletries
                                                                  5157Towels Changed Upon Request
                                                                  515824-hour security
                                                                  5159Security alarm
                                                                  5160Smoke alarms
                                                                  5161CCTV in common areas
                                                                  5162CCTV outside property
                                                                  5163Fire extinguishers
                                                                  5164Key access
                                                                  5165Key card access
                                                                  5166Carbon monoxide detector
                                                                  5167Carbon monoxide source
                                                                  5168No plastic stirrers
                                                                  5169No plastic straws
                                                                  5170No plastic cups
                                                                  5171No plastic bottles for water
                                                                  5172No plastic bottles for non-water
                                                                  5173No plastic cutlery
                                                                  5174Keycard for room electricity
                                                                  5175Opt-out from daily room cleaning
                                                                  5176Refillable water stations
                                                                  5177Bike rental
                                                                  5178Bike parking
                                                                  6000Lunch
                                                                  6001Dinner
                                                                  90001Renewable energy

                                                                  Tax type codes

                                                                  CodeName
                                                                  1Bed tax
                                                                  3City tax
                                                                  4County tax
                                                                  5Energy tax
                                                                  6Federal tax
                                                                  7Food & beverage tax
                                                                  8Lodging tax
                                                                  10Occupancy tax
                                                                  13Sales tax
                                                                  15State tax
                                                                  17Total tax
                                                                  18Tourism tax
                                                                  19VAT/GST tax
                                                                  28Room Tax
                                                                  30Country tax
                                                                  35Goods and services tax (GST)
                                                                  36Value Added Tax (VAT)
                                                                  39Assessment/license tax
                                                                  43Convention tax
                                                                  46National government tax
                                                                  5001Spa tax
                                                                  5002Hot spring tax
                                                                  5004Residential tax
                                                                  5007Sauna/fitness facilities tax
                                                                  5008Local council tax

                                                                  Unit and room amenity type codes

                                                                  The unit and room amenities are defined by the Room Amenity Type Codes (RMA) in the Code Lists of the OpenTravel standard. They define the amenities of an individual room type, room or housing unit. The codes retain compatibility with most market implementations and thus some amenities are duplicated or may appear duplicated. The system also uses extensions of these codes, which are the codes above 5000.

                                                                  CodeName
                                                                  1Adjoining rooms
                                                                  2Air conditioning
                                                                  3Alarm clock
                                                                  4All news channel
                                                                  5AM/FM radio
                                                                  6Baby listening device
                                                                  7Balcony/Lanai/Terrace
                                                                  8Barbeque grills
                                                                  9Bath tub with spray jets
                                                                  10Bathrobe
                                                                  11Bathroom amenities
                                                                  12Bathroom telephone
                                                                  13Bathtub
                                                                  14Bathtub only
                                                                  15Bathtub/shower combination
                                                                  16Bidet
                                                                  17Bottled water
                                                                  18Cable television
                                                                  19Coffee/Tea maker
                                                                  20Color television
                                                                  21Computer
                                                                  22Connecting rooms
                                                                  23Converters/ Voltage adaptors
                                                                  24Copier
                                                                  25Cordless phone
                                                                  26Cribs
                                                                  27Data port
                                                                  28Desk
                                                                  29Desk with lamp
                                                                  30Dining guide
                                                                  31Direct dial phone number
                                                                  32Dishwasher
                                                                  33Double beds
                                                                  34Dual voltage outlet
                                                                  35Electrical current voltage
                                                                  36Ergonomic chair
                                                                  37Extended phone cord
                                                                  38Fax machine
                                                                  39Fire alarm
                                                                  40Fire alarm with light
                                                                  41Fireplace
                                                                  42Free toll free calls
                                                                  43Free calls
                                                                  44Free credit card access calls
                                                                  45Free local calls
                                                                  46Free movies/video
                                                                  47Full kitchen
                                                                  48Grab bars in bathroom
                                                                  49Grecian tub
                                                                  50Hairdryer
                                                                  51High speed internet connection
                                                                  52Interactive web TV
                                                                  53International direct dialing
                                                                  54Internet access
                                                                  55Iron
                                                                  56Ironing board
                                                                  57Whirpool
                                                                  58King bed
                                                                  59Kitchen
                                                                  60Kitchen supplies
                                                                  61Kitchenette
                                                                  62Knock light
                                                                  63Laptop
                                                                  64Large desk
                                                                  65Large work area
                                                                  66Laundry basket/clothes hamper
                                                                  67Loft
                                                                  68Microwave
                                                                  69Minibar
                                                                  70Modem
                                                                  71Modem jack
                                                                  72Multi-line phone
                                                                  73Newspaper
                                                                  74Non-smoking
                                                                  75Notepads
                                                                  76Office supplies
                                                                  77Oven
                                                                  78Pay per view movies on TV
                                                                  79Pens
                                                                  80Phone in bathroom
                                                                  81Plates and bowls
                                                                  82Pots and pans
                                                                  83Prayer mats
                                                                  84Printer
                                                                  85Private bathroom
                                                                  86Queen bed
                                                                  87Recliner
                                                                  88Refrigerator
                                                                  89Refrigerator with ice maker
                                                                  90Remote control television
                                                                  91Rollaway bed
                                                                  92Safe
                                                                  93Scanner
                                                                  94Separate closet
                                                                  95Separate modem line available
                                                                  96Shoe polisher
                                                                  97Shower only
                                                                  98Silverware/utensils
                                                                  99Sitting area
                                                                  100Smoke detectors
                                                                  101Smoking
                                                                  102Sofa bed
                                                                  103Speaker phone
                                                                  104Stereo
                                                                  105Stove
                                                                  106Tape recorder
                                                                  107Telephone
                                                                  108Telephone for hearing impaired
                                                                  109Telephones with message light
                                                                  110Toaster oven
                                                                  111Trouser/Pant press
                                                                  112Turn down service
                                                                  113Twin bed
                                                                  114Vaulted ceilings
                                                                  115VCR movies
                                                                  116VCR player
                                                                  117Video games
                                                                  118Voice mail
                                                                  119Wake-up calls
                                                                  120Water closet
                                                                  121Water purification system
                                                                  122Wet bar
                                                                  123Wireless internet connection
                                                                  124Wireless keyboard
                                                                  125Adaptor available for telephone PC use
                                                                  126Air conditioning individually controlled in room
                                                                  127Bathtub &whirlpool separate
                                                                  128Telephone with data ports
                                                                  129CD player
                                                                  130Complimentary local calls time limit
                                                                  131Extra person charge for rollaway use
                                                                  132Down/feather pillows
                                                                  133Desk with electrical outlet
                                                                  134ESPN available
                                                                  135Foam pillows
                                                                  136HBO available
                                                                  137High ceilings
                                                                  138Marble bathroom
                                                                  139List of movie channels available
                                                                  140Pets allowed
                                                                  141Oversized bathtub
                                                                  142Shower
                                                                  143Sink in-room
                                                                  144Soundproofed room
                                                                  145Storage space
                                                                  146Tables and chairs
                                                                  147Two-line phone
                                                                  148Walk-in closet
                                                                  149Washer/dryer
                                                                  150Weight scale
                                                                  151Welcome gift
                                                                  152Spare electrical outlet available at desk
                                                                  153Non-refundable charge for pets
                                                                  154Refundable deposit for pets
                                                                  155Separate tub and shower
                                                                  156Entrance type to guest room
                                                                  157Ceiling fan
                                                                  158CNN available
                                                                  159Electrical adaptors available
                                                                  160Buffet breakfast
                                                                  161Accessible room
                                                                  162Closets in room
                                                                  163DVD player
                                                                  164Mini-refrigerator
                                                                  165Separate line billing for multi-line phone
                                                                  166Self-controlled heating/cooling system
                                                                  167Toaster
                                                                  168Analog data port
                                                                  169Collect calls
                                                                  170International calls
                                                                  171Carrier access
                                                                  172Interstate calls
                                                                  173Intrastate calls
                                                                  174Local calls
                                                                  175Long distance calls
                                                                  176Operator-assisted calls
                                                                  177Credit card access calls
                                                                  178Calling card calls
                                                                  179Toll free calls
                                                                  180Universal AC/DC adaptors
                                                                  181Bathtub seat
                                                                  182Canopy/poster bed
                                                                  183Cups/glassware
                                                                  184Entertainment center
                                                                  185Family/oversized room
                                                                  186Hypoallergenic bed
                                                                  187Hypoallergenic pillows
                                                                  188Lamp
                                                                  189Meal included: breakfast
                                                                  190Meal included: continental breakfast
                                                                  191Meal included: dinner
                                                                  192Meal included: lunch
                                                                  193Shared bathroom
                                                                  194Telephone TDD/Textphone
                                                                  195Water bed
                                                                  196Extra adult charge
                                                                  197Extra child charge
                                                                  198Extra child charge for rollaway use
                                                                  199Meal included: full American breakfast
                                                                  200Futon
                                                                  201Murphy bed
                                                                  202Tatami mats
                                                                  203Single bed
                                                                  204Annex room
                                                                  205Free newspaper
                                                                  206Honeymoon suites
                                                                  207Complimentary high speed internet in room
                                                                  208Maid service
                                                                  209PC hook-up in room
                                                                  210Satellite television
                                                                  211VIP rooms
                                                                  212Cell phone recharger
                                                                  213DVR player
                                                                  214iPod docking station
                                                                  215Media center
                                                                  216Plug & play panel
                                                                  217Satellite radio
                                                                  218Video on demand
                                                                  219Exterior corridors
                                                                  220Gulf view
                                                                  221Accessible room
                                                                  222Interior corridors
                                                                  223Mountain view
                                                                  224Ocean view
                                                                  225High speed internet access fee
                                                                  226High speed wireless
                                                                  227Premium movie channels
                                                                  228Slippers
                                                                  229First nighters' kit
                                                                  230Chair provided with desk
                                                                  231Pillow top mattress
                                                                  232Feather bed
                                                                  233Duvet
                                                                  234Luxury linen type
                                                                  235International channels
                                                                  236Pantry
                                                                  237Dish-cleaning supplies
                                                                  238Double vanity
                                                                  239Lighted makeup mirror
                                                                  240Upgraded bathroom amenities
                                                                  241VCR player available at front desk
                                                                  242Instant hot water
                                                                  243Outdoor space
                                                                  244Hinoki tub
                                                                  245Private pool
                                                                  246High Definition (HD) Flat Panel Television - 32 inches or greater
                                                                  247Room windows open
                                                                  248Bedding type unknown or unspecified
                                                                  249Full bed
                                                                  250Round bed
                                                                  251TV
                                                                  252Child rollaway
                                                                  253DVD player available at front desk
                                                                  254Video game player:
                                                                  255Video game player available at front desk
                                                                  256Dining room seats
                                                                  257Full size mirror
                                                                  258Mobile/cellular phones
                                                                  259Movies
                                                                  260Multiple closets
                                                                  261Plates/glassware
                                                                  262Safe large enough to accommodate a laptop
                                                                  263Bed linen thread count
                                                                  264Blackout curtain
                                                                  265Bluray player
                                                                  266Device with mp3
                                                                  267No adult channels or adult channel lock
                                                                  268Non-allergenic room
                                                                  269Pillow type
                                                                  270Seating area with sofa/chair
                                                                  271Separate toilet area
                                                                  272Web enabled
                                                                  273Widescreen TV
                                                                  274Other data connection
                                                                  275Phoneline billed separately
                                                                  276Separate tub or shower
                                                                  277Video games
                                                                  278Roof ventilator
                                                                  279Children's playpen
                                                                  280Plunge pool
                                                                  281DVD movies
                                                                  282Air filtration
                                                                  283Exercise Equipment in Room
                                                                  5001Coffee/Tea maker
                                                                  5002Internet facilities
                                                                  5003Mini-bar
                                                                  5004Shower
                                                                  5005Bath
                                                                  5006Safe Deposit Box
                                                                  5007Pay-per-view Channels
                                                                  5008TV
                                                                  5009Telephone
                                                                  5010Fax
                                                                  5011Airconditioning
                                                                  5012Hair Dryer
                                                                  5013Wake Up Service/Alarm-clock
                                                                  5014Hot Tub
                                                                  5015Clothing Iron
                                                                  5016Kitchenette
                                                                  5017Balcony
                                                                  5018Trouser Press
                                                                  5019Bath-robe
                                                                  5020Spa Bath
                                                                  5021Radio
                                                                  5022Refrigerator
                                                                  5023Desk
                                                                  5024Shared Bathroom
                                                                  5025Ironing facilities
                                                                  5026Seating area
                                                                  5027Free Toiletries
                                                                  5028DVD-Player
                                                                  5029CD-Player
                                                                  5030Fan
                                                                  5031Toilet
                                                                  5032Microwave
                                                                  5033Dishwasher
                                                                  5034Washing machine
                                                                  5035Video
                                                                  5036Video Games
                                                                  5037Patio
                                                                  5038Bathroom
                                                                  5039Extra long beds (> 2 meter)
                                                                  5040Heating
                                                                  5041Dressing room
                                                                  5042Guest toilet
                                                                  5043Slippers
                                                                  5044Satellite Channels
                                                                  5045Kitchen
                                                                  5046Wireless internet
                                                                  5068Cable channels
                                                                  5069Bath or Shower
                                                                  5070Carpeted Floor
                                                                  5071Fireplace
                                                                  5072Additional Toilet
                                                                  5073Interconnecting Room(s) available
                                                                  5074Laptop Safe Box
                                                                  5075Flat-screen TV
                                                                  5076Private Entrance
                                                                  5077Sofa
                                                                  5079Soundproofing
                                                                  5080Tiled / Marble floor
                                                                  5081View
                                                                  5082Wooden / Parquet floor
                                                                  5083Wake Up Service
                                                                  5084Alarm Clock
                                                                  5085Dining Area
                                                                  5086Electric Kettle
                                                                  5087Executive Lounge Access
                                                                  5088iPod Docking Station
                                                                  5089Kitchenware
                                                                  5090Mosquito Net
                                                                  5091Towels/Linens at surcharge
                                                                  5092Sauna
                                                                  5093Private Pool
                                                                  5094Tumble dryer (machine)
                                                                  5095Wardrobe/Closet
                                                                  5096Oven
                                                                  5097Stove
                                                                  5098Toaster
                                                                  5099Barbecue
                                                                  5100Bidet
                                                                  5101Computer
                                                                  5102iPad
                                                                  5103Game Console
                                                                  5104Game Console - Xbox 360
                                                                  5105Game Console - PS2
                                                                  5106Game Console - PS3
                                                                  5107Game Console - Nintendo Wii
                                                                  5108Sea View
                                                                  5109Lake View
                                                                  5110Garden View
                                                                  5111Pool View
                                                                  5112Mountain View
                                                                  5113Landmark View
                                                                  5114Laptop
                                                                  5115Allergy-Free
                                                                  5116Cleaning products
                                                                  5117Electric blankets
                                                                  5118Additional Bathroom
                                                                  5119Blu-ray player
                                                                  5120Coffee Machine
                                                                  5121City View
                                                                  5122River View
                                                                  5123Terrace
                                                                  5124Towels
                                                                  5125Linen
                                                                  5126Dining table
                                                                  5127Children highchair
                                                                  5129Outdoor furniture
                                                                  5130Outdoor dining area
                                                                  5131Entire property on ground floor
                                                                  5132Upper floor reachable by lift
                                                                  5133Upper floor reachable by stairs only
                                                                  5134Entire unit wheelchair accessible
                                                                  5135Detached
                                                                  5136Semi-detached
                                                                  5137Private flat in block of flats
                                                                  5138Clothes Rack
                                                                  5139Rollaway bed
                                                                  5140Clothes drying rack
                                                                  5141Toilet paper
                                                                  5142Child safety socket covers
                                                                  5143Board games/puzzles
                                                                  5144Book/DVD/Music library for children
                                                                  5145Baby safety gates
                                                                  5146Sofa bed
                                                                  5147Toilet with grab rails
                                                                  5148Adapted bath
                                                                  5149Roll in shower
                                                                  5150Walk in shower
                                                                  5151Higher level toilet
                                                                  5152Low bathroom sink
                                                                  5153Bathroom emergency pull cord
                                                                  5154Shower chair
                                                                  5157Rooftop pool
                                                                  5158Infinity pool
                                                                  5159Pool with view
                                                                  5160Heated pool
                                                                  5161Salt-water pool
                                                                  5162Plunge pool
                                                                  5163Pool towels
                                                                  5164Shallow end
                                                                  5165Pool cover
                                                                  5166Wine/champagne
                                                                  5167Bottle of water
                                                                  5168Fruits
                                                                  5169Chocolate/cookies
                                                                  5170Trash cans
                                                                  5171Wine glasses
                                                                  5172Game console - Xbox One
                                                                  5173Game console - Wii U
                                                                  5174Game console - PS4
                                                                  5175Children crib/cots
                                                                  5176Toothbrush
                                                                  5177Shampoo
                                                                  5178Conditioner
                                                                  5179Body soap
                                                                  5180Shower cap
                                                                  5181Pajamas
                                                                  5182Yukata
                                                                  5184Socket near the bed
                                                                  5185Adapter
                                                                  5186Feather pillow
                                                                  5187Non-feather pillow
                                                                  5188Hypoallergenic pillow
                                                                  5189Accessible by Lift
                                                                  5190Inner courtyard view
                                                                  5191Quiet street view
                                                                  5196Portable Wifi
                                                                  5198Smartphone
                                                                  5199Streaming service (such as Netflix)
                                                                  5200Lockers
                                                                  5201Fire alarms or smoke detectors
                                                                  5202Fire extinguishers
                                                                  5203Metal keys access
                                                                  5204Electronic key card access
                                                                  5205Reading light
                                                                  5206Earplugs
                                                                  5207Private curtain
                                                                  5211Carbon monoxide detector
                                                                  5212Carbon monoxide source
                                                                  90001Bread-bun delivery
                                                                  90002Breakfast delivery
                                                                  90003Grocery delivery service
                                                                  90004Beach chair or roofed wicker beach chair
                                                                  90005Shared kitchen
                                                                  90006Bunk bed
                                                                  90007Levee view
                                                                  90008Pay television
                                                                  90009Extractor hood
                                                                  90010Vacuum cleaner
                                                                  90011Separated bedrooms

                                                                  Unit and room type code

                                                                  The room type code is an implementation that is proprietary to LODGEA since the standard does not define specific room types. The unit types are compatible with the Booking.com Room Type Codes (BCRT) following the BCRT as a defacto market standard. Each unit or room has a type code that defines what type of room or unit that is. For hotels the unit defines the room type while for vacation rentals, the unit defines the individual housing unit in the property. The system currently supports the following unit types.

                                                                  CodeName
                                                                  1Apartment
                                                                  4Quadruple
                                                                  5Suite
                                                                  7Triple
                                                                  8Twin
                                                                  9Double
                                                                  10Single
                                                                  12Studio
                                                                  13Family
                                                                  24Twin/Double
                                                                  25Dormitory room
                                                                  26Bed in Dormitory
                                                                  27Bungalow
                                                                  28Chalet
                                                                  29Holiday home
                                                                  31Villa
                                                                  32Mobile home
                                                                  33Tent