# Get notes from a contact record Retrieve all notes associated with a specific contact record in the CRM module of the PMS. The response includes a list of notes, each containing details such as the note's content, creation date, author, and any associated tags or categories. This endpoint is useful for tracking communication history, documenting interactions, and maintaining a comprehensive record of engagements with contacts. Endpoint: GET /api/v3/contacts/{id}/notes Version: 3.0.9 Security: OAuth2 ## Path parameters: - `id` (integer, required) Contact ID ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier of the note - `content.note` (string) Content of the note - `content.reason` (object) Reason for amending the note - `content.reason.id` (integer) Unique identifier of the reason - `content.reason.reason` (string) Description of the reason - `content.reason.turnedAway` (boolean) Indicates if the reason is for being turned away - `content.reason.type` (string) Type of the reason Enum: "CANCELLATION", "AMENDMENT" - `content.amendmentReason` (object) Reason for amending the note - `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.nameLowercase` (string) - `content.noteCategory.default` (integer) - `content.building` (object) Building associated with the unit type - `content.building.id` (integer) Unique identifier of the building - `content.building.name` (string) Name of the building - `content.contact` (object) - `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.private` (boolean) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)