# Retrieve a note and its associated entity reference. Retrieve information about a specific note for an entity type within the Property Management System (PMS). This includes reference to the associated entity the note is linked to. Endpoint: GET /api/v3/notes/{id} Version: 3.0.12 Security: X-Auth-Token ## Path parameters: - `id` (integer, required) ## Query parameters: - `entityType` (string) ID of a specific note - `pageable` (object, required) ## Response 200 fields (application/json): - `id` (integer) Unique identifier of the note - `note` (string) Content of the note - `reason` (object) Lost reason - `reason.id` (integer) Unique identifier of the reason - `reason.reason` (string) Description of the reason - `reason.turnedAway` (boolean) Indicates if the reason is for being turned away - `reason.type` (string) Type of the reason Enum: "CANCELLATION", "AMENDMENT" - `amendmentReason` (object) Lost reason - `noteCategory` (object) Category of the associated note, required if noteText is provided - `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.nameLowercase` (string) - `noteCategory.default` (integer) - `building` (object) Building associated with the unit type - `building.id` (integer) Unique identifier of the building - `building.name` (string) Name of the building - `entitySummaryDTO` (object) Entity associated with the note - `entitySummaryDTO.id` (integer, required) Unique identifier of the entity - `entitySummaryDTO.type` (string, required) Type of entity for the note Enum: "ACTIVITY", "BOOKING", "CONTACT", "COMPANY", "ISSUE" - `private` (boolean)