# Retrieve guest stays for specified room stay Fetch a list of all guest stays associated with a specific room stay. This endpoint is useful for retrieving detailed information about guests staying in a room. If the specified room stay ID does not exist, a error will be returned. In case of an unexpected system error, a will be triggered. Endpoint: GET /api/v3/roomStays/{id}/guestStays Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) The unique identifier of the room stay to retrieve guest stays for ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier of the guest stay - `content.contact` (object) The primary correspondence contact of the company - `content.contact.id` (integer) Unique identifier of the contact - `content.contact.firstName` (string) First name of the contact - `content.contact.lastName` (string) Last name of the contact - `content.roomStay` (object) Room stay related to the Activity - `content.roomStay.id` (integer) Unique identifier of the room stay - `content.roomStay.startDate` (string) Start date of the room stay - `content.roomStay.endDate` (string) End date of the room stay - `content.roomStay.roomStayStatus` (string) Status of the room stay Enum: "ENQUIRY", "QUOTED", "PENDING", "MEDIATION_REQUIRED", "CONFIRMED", "CHECKED_IN", "CHECKED_OUT", "COMPLETE", "CANCELLED", "LOST" - `content.roomStay.netAmount` (number) Net amount for the room stay - `content.roomStay.vatAmount` (number) VAT amount for the room stay - `content.roomStay.numberOfAdults` (integer) Number of adults in the room stay - `content.roomStay.numberOfChildren` (integer) Number of children in the room stay - `content.roomStay.numberOfInfants` (integer) Number of infants in the room stay - `content.dateFrom` (string) Start date of the guest stay - `content.dateTo` (string) End date of the guest stay - `content.type` (string) Type of the guest stay Enum: "BUSINESS", "DIRECT", "DAYTIME", "OVERNIGHT" - `content.status` (string) Status of the guest stay Enum: "PENDING", "CONFIRMED", "CHECKED_IN", "CHECKED_OUT", "CANCELLED", "LOST" - `content.extensionOf` (object) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)