Room endpoints now return a suite_room_ids array for suite and component rooms, listing the individual room IDs that make up the suite as configured in the PMS. The field is only returned when the room consists of multiple component rooms and is omitted entirely for single rooms.
Affected endpoints: GET /rooms, GET /rooms/{id}, GET /hotels/{id}/rooms
Example response:
{
"suite_room_ids": [
{
"id": "3847291"
},
{
"id": "3847292"
}
]
}




