Skip to main content

Rate Plan

ratePlanIdstringrequired

Unique identifier for this rate plan

Example: SHORT_STAY_RATE
guestsinteger<int32>required

Number of guests. Allowed number of guests must be between 1 and 100

Possible values: >= 1 and <= 100

Example: 2
currencystringrequired
Example: EUR
minimumStayinteger<int32>required

Minimum Stay (days)

Example: 1
maximumStayinteger<int32>

Maximum Stay (days)

Example: 30
dailyRates object[]required

List of daily rates

  • Array [
  • datestring<date>required

    Date

    Example: 2023-05-01
    pricenumberrequired

    Daily price

    Example: 95
    priceForExtraPersonnumber

    Additional cost per extra person

    Example: 20
    checkinAllowedbooleanrequired

    Check in is possible on this day

    Example: true
    checkoutAllowedbooleanrequired

    Check out is possible on this day

    Example: false
  • ]
  • Rate Plan
    {
    "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
    }
    ]
    }