Room type endpoints now return a new image_urls array containing all image URLs configured for the room type in the PMS. The existing image_url field continues to return the primary image only and remains unchanged for backward compatibility. A maximum of 5 images per room type are supported in the PMS.
Affected endpoints: GET /room_types/{id}, GET /hotels/{id}/room_types
Example response:
{
"id": 1526703,
"name": "Deluxe King",
"image_url": "https://example.rackcdn.com/room_types/1526703/images/primary.jpg",
"image_urls": [
"https://example.rackcdn.com/room_types/1526703/images/primary.jpg",
"https://example.rackcdn.com/room_types/1526703/images/bathroom.jpg",
"https://example.rackcdn.com/room_types/1526703/images/view.jpg"
]
}




