# Retrieve list of all notes for specified booking Retrieve a comprehensive list of all notes associated with a specific booking within the Property Management System (PMS). Notes provide detailed information about the booking, including comments, updates, and additional context. This endpoint ensures that all notes linked to the booking are accessible, facilitating efficient management and tracking of reservations. Endpoint: GET /api/v3/bookings/{id}/notes 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.id` (integer) - `content.booking` (object) Booking associated with the issue - `content.booking.id` (integer) The unique identifier of the booking - `content.booking.bookingReference` (string) The booking reference number - `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.note` (string) - `content.noteCategory` (object) Note category identifier - `content.noteCategory.id` (integer) Unique identifier of the note category - `content.noteCategory.name` (string) Name of the note category - `content.noteCategory.defaultCategory` (boolean) Indicates if this is the default category - `content.noteCategory.buildingLimit` (integer) - `content.noteCategory.default` (integer) - `content.noteCategory.nameLowercase` (string) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)