Skip to main content

Room Upgrade

Upgrade the guest from one room type to another. Include the room to charge, the room to stay (upgraded room), and the reason code for the upgrade.

 

ParameterDescriptionTypeRequired
Reason/@CodeCode for the upgrade request as defined in the CR.StringNo
RoomToCharge/@CodeCode of the room to charge.StringNo
RoomToStay/@CodeCode of the room the guest will stay.StringNo

 

Sample Request (Partial)

{
    "Chain": {...},
    "Channels": {...},
    "Hotel": {...},
    "Guests": [...],
    "RoomStay": {...},
    "Upgrade": {
      "Reason": {
        "Code": "HNYMN"
      },
      "RoomToCharge": {
        "Code": "A1Q"
      },
      "RoomToStay": {
        "Code": "A1K"
      }
    }
    "status": "Confirmed"
}


Sample Retrieve Reservation response (partial)

{
    "Upgrade": {
        "Reason": {
            "Code": "HNYMN",
            "Value": "Honeymoon"
        },
        "RoomToCharge": {
            "Code": "A1Q"
        },
        "RoomToStay": {
            "Code": "A1K"
        }
    }
}