> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Notes V2 # Type: Note Object # Link: https://dev.wix.com/docs/api-reference/crm/members-contacts/contacts/notes/notes-v2/note-object.md ## Description: A note contains textual information associated with a contact. ## Schema: ```json Type: Note Object | type: Note Description: A note contains textual information associated with a contact. - name: id | type: string | description: Note ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the note is updated. To prevent conflicting changes, the current revision must be passed when updating the note. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the note was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the note was last updated. - name: contactId | type: string | description: Contact ID associated with the note. - name: text | type: string | description: Note text. - name: type | type: string | description: Note type for organizing notes by their purpose. Default: `NOT_SET` enum: UNKNOWN_TYPE, NOT_SET, MEETING_SUMMARY, CALL_SUMMARY - name: source | type: NoteSource | description: Information about who created the note. - name: sourceType | type: string | description: Note creator. enum: UNKNOWN_SOURCE_TYPE, APP, USER - name: appId | type: string | description: App ID, if the note was created by an app. - name: userId | type: string | description: User ID, if the note was created by a Wix user. ```