# Record a note against a specified booking Record a note against a specified booking within the Property Management System (PMS). This endpoint allows you to add comments, updates, or additional information related to a booking. Notes provide detailed context and history for the booking, ensuring comprehensive tracking and management of reservations. Endpoint: POST /api/v3/bookings/{id}/notes Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ID of booking ## Request fields (application/json): - `note` (string, required) Note ## Response 200 fields (application/json): - `id` (integer) - `booking` (object) Booking associated with the issue - `booking.id` (integer) The unique identifier of the booking - `booking.bookingReference` (string) The booking reference number - `roomStay` (object) Room stay related to the Activity - `roomStay.id` (integer) Unique identifier of the room stay - `roomStay.startDate` (string) Start date of the room stay - `roomStay.endDate` (string) End date of the room stay - `roomStay.roomStayStatus` (string) Status of the room stay Enum: "ENQUIRY", "QUOTED", "PENDING", "MEDIATION_REQUIRED", "CONFIRMED", "CHECKED_IN", "CHECKED_OUT", "COMPLETE", "CANCELLED", "LOST" - `roomStay.netAmount` (number) Net amount for the room stay - `roomStay.vatAmount` (number) VAT amount for the room stay - `roomStay.numberOfAdults` (integer) Number of adults in the room stay - `roomStay.numberOfChildren` (integer) Number of children in the room stay - `roomStay.numberOfInfants` (integer) Number of infants in the room stay - `note` (string) - `noteCategory` (object) Note category identifier - `noteCategory.id` (integer) Unique identifier of the note category - `noteCategory.name` (string) Name of the note category - `noteCategory.defaultCategory` (boolean) Indicates if this is the default category - `noteCategory.buildingLimit` (integer) - `noteCategory.default` (integer) - `noteCategory.nameLowercase` (string)