---
title: "getReservationRoomDetails"
method: GET
path: "/getReservationRoomDetails"
tags: ["Room"]
---

# getReservationRoomDetails

`GET /getReservationRoomDetails`

Returns information about particular room in reservation by its subReservationID

## Query parameters

- `propertyID` string
- `subReservationID` string, required

## Response `200`

200 Response

- GetReservationRoomDetailsResponse
  - `success` boolean — Returns if the request could be completed
  - `message` string, nullable — To be used in case any error occurs (if success = false). If success = true, it does not exist.
  - `data` object — Details for the rooms assigned on the selected date
    - `reservationID` string — Reservation Unique Identifier.
    - `subReservationID` string — Subreservation Unique Identifier
    - `isRoomLocked` boolean — Whether the reservation room assignment is locked. Locked reservations cannot be reassigned via the calendar UI.
    - `roomID` string — ID of room assigned
    - `roomName` string — Name of room assigned
    - `dormRoomName` string, nullable — Name of the dorm room. Used for the shared dorm beds that are organized into rooms within the same room type.
    - `guestID` string — Guest Identifier
    - `guestName` string — Guest Name
    - `roomStatus` 'cancelled' | 'checked_out' | 'in_house' | 'not_checked_in' — Room status<br /> 'cancelled' - Reservation with this room was canceled<br /> 'checked_out' - Guest already left the room<br /> 'in_house' - Guest is in the room<br /> 'not_checked_in' - Guest isn't checked-in yet
    - `roomTypeID` string — ID of room type assigned
    - `roomTypeName` string — Name of room type assigned
    - `roomTypeIsVirtual` boolean — If room is virtual (true) or physical (false)
    - `maxGuests` integer — Maximum number of guests that room type permits
    - `adults` integer — Number of adults registered to room (this does not mean there will be this number of guests in guests array)
    - `children` integer — Number of children registered to room (this does not mean there will be this number of guests in guests array)
    - `guests` object[] — Array with all guests assigned to room
      - `guestID` string — ID of assigned guest
      - `guestFirstName` string — First name of assigned guest
      - `guestLastName` string — Last of assigned guest
      - `isMainGuest` boolean — If guest is reservation's main guest

---

[API](https://skmtc.net/cloudbeds/apis/cloudbeds-api.md) · [All operations](https://skmtc.net/cloudbeds/apis/cloudbeds-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cloudbeds/cloudbeds-api/revisions/2faa857793e8/schema)
