Rooms and Rates

The room-rates endpoint allows a PMS to request a list of room rates configured in PMSX for a hotel. The response includes each room rate's name and mapping codes, which can be used to align the PMSX room rates with the hotel's room rates configured in the PMS.

Important Considerations for the Rooms and Rates Process:

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

  • includedAdultOccupancy is an optional field and may also be blank if this value is not configured by the hotelier 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