Room Rates

The ‘room-rates’ endpoint allows a PMS to request a list of PMSX RoomRates for a hotel.

The response includes the name and mapping codes that these PMS Room Rates have configured. These codes can then be used to map the PMSX RoomRates to the Hoteliers own Room Rates configured in the PMS.

If your PMS integration does not support rate plans then the value fields for 'ratePlanName' and 'ratePlanCode' will be left blank.

Included Occupancy is another optional field and maybe blank if your hoteliers have not configured this value in the Channel Manager/Platform.

[
  {
    "ratePlanName": "Rate1",
    "ratePlanCode": "RT1",
    "roomTypeName": "Room1",
    "roomTypeCode": "RM1",
    "includedAdultOccupancy": 1
  },
  {
    "ratePlanName": "Rate2",
    "ratePlanCode": "RT2",
    "roomTypeName": "Room2",
    "roomTypeCode": "RM2",
    "includedAdultOccupancy": 2
  },
  {
    "ratePlanName": "Rate3",
    "ratePlanCode": "RT3",
    "roomTypeName": "Room3",
    "roomTypeCode": "RM3",
    "includedAdultOccupancy": 3
  }
]

Last updated