# Retrieve list of all room stays for specified booking Retrieve a comprehensive list of all room stays associated with a specific booking within the Property Management System (PMS). This endpoint provides detailed information about each room stay, including the status, duration, and associated unit. It ensures that all room stays linked to the booking are accessible, facilitating efficient management and tracking of reservations. Endpoint: GET /api/v3/bookings/{id}/roomStays Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ID of the booking ## Query parameters: - `pageable` (object, required) ## Response 200 fields (application/json): - `content` (array) - `content.organisationSettingsName` (string) The name of the organisation for the room stay - `content.organisationSettingsId` (integer) The id of the organisation for the room stay - `content.roomStayId` (integer) The id of the room stay - `content.unit` (object) The unit of the room stay - `content.unit.name` (string) Unit Name - `content.unit.id` (integer) Unit ID - `content.unit.buildingName` (string) Unit Type ID - `content.startDate` (string) The start date of the room stay - `content.endDate` (string) The end date of the room stay - `content.netAmount` (number) The net amount of the room stay - `content.vatAmount` (number) The VAT amount of the room stay - `content.bookingId` (integer) The id of the booking - `content.channelId` (integer) The id of the channel for the booking - `content.channelName` (string) The name of the channel for the booking - `content.otaReference` (string) The ota reference for the booking - `content.bookingAccount` (object) The projected finance account - `content.bookingAccount.id` (integer) The unique identifier of the account - `content.bookingAccount.company` (object) The company of the account - `content.bookingAccount.company.id` (integer) Unique identifier of the company - `content.bookingAccount.company.companyName` (string) Name of the company - `content.bookingAccount.accountCode` (string) The code of the account - `content.bookingAccount.contact` (object) The name of the account - `content.bookingAccount.contact.id` (integer) Unique identifier of the contact - `content.bookingAccount.contact.firstName` (string) First name of the contact - `content.bookingAccount.contact.lastName` (string) Last name of the contact - `content.bookingAccount.contact.telephoneNumber` (string) Telephone number of the contact - `content.bookingAccount.contact.emailAddress` (string) Email address of the contact - `content.bookingReference` (string) The reference of the booking - `content.roomStayStatus` (string) The status of the room stay - `content.customerReference` (string) The customer reference for the booking - `content.bookingContact` (object) The name of the account - `content.billingAccount` (object) The projected finance account - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)