Apartment Rates
ratePlans object[]required
Array [
ratePlanIdstringrequired
Unique identifier for this rate plan
Example:
SHORT_STAY_RATEguestsinteger<int32>required
Number of guests. Allowed number of guests must be between 1 and 100
Possible values: >= 1 and <= 100
Example:
2currencystringrequired
Example:
EURminimumStayinteger<int32>required
Minimum Stay (days)
Example:
1maximumStayinteger<int32>
Maximum Stay (days)
Example:
30dailyRates object[]required
List of daily rates
Array [
datestring<date>required
Date
Example:
2023-05-01pricenumberrequired
Daily price
Example:
95priceForExtraPersonnumber
Additional cost per extra person
Example:
20checkinAllowedbooleanrequired
Check in is possible on this day
Example:
truecheckoutAllowedbooleanrequired
Check out is possible on this day
Example:
false]
]
Apartment Rates
{
"ratePlans": [
{
"ratePlanId": "SHORT_STAY_RATE",
"guests": 2,
"currency": "EUR",
"minimumStay": 1,
"maximumStay": 30,
"dailyRates": [
{
"date": "2023-05-01",
"price": 95,
"priceForExtraPerson": 20,
"checkinAllowed": true,
"checkoutAllowed": false
}
]
}
]
}