Breadcrumb
- Reservation Services
- Create Reservation
- Use Cases
- Room Requests
Room Requests
Special requests are identified by the @code attribute that is included in each RoomRequest element. These requests are tied to OTA Room Amenity codes (RMA) for room requests that have been defined for the hotel in SynXis CR under Setup > Rooms > Room Requests.
If you pass a RoomRequest element with an OTA Room Amenity Code (@code) that matches a room request in SynXis CR, the room request description displays in the Room Features section on the Reservation Details page.
Parameter | Description | Type | Required |
---|---|---|---|
RoomRequests/@Code | Room Request Code. | [String] | No |
Sample Request (Partial)
{
"Chain": {...},
"Channels": {...},
"Hotel": {...},
"Guests": [...],
"RoomStay": {...},
"RoomRequests": [
{
"Code": "59001"
},
{
"Code": "BREAK"
}
],
"status": "Confirmed"
}
The Retrieve Reservation response includes a Content/RoomRequests node for the associated room requested codes.
{
"Content": {
"RoomRequests": [
{
"Description": "Away from elevator",
"Code": "59001"
},
{
"Description": "CAFE DA MANHA",
"Code": "BREAK"
}
]
},
...
}