# Contact Note Change Contact Note Change webhook triggers: - Contact New Note - Contact Amend Note ## Summary The following table explains the fields | **Field** | **Description** | | --- | --- | | **id** | Unique identifier for the note record. | | **accountCode** | Unique code identifying the account associated with the note. | | **primaryEmail** | The primary email address associated with the note. | | **type** | The type of note, indicating its purpose or classification (e.g., "CONTACT_NEW_NOTE"). | | **category** | The category assigned to the note for organisational purposes (e.g., "Default"). | | **note** | The content of the note. | | **building** | The building associated with the note, if applicable (empty if not specified). | | **addedBy** | The name of the user who added the note. | | **AddedDate** | The date and time when the note was added. | | **private** | Indicates whether the note is marked as private (`true` or `false`). | ## Example ``` { "id":9657, "accountCode":"Bri554", "primaryEmail":"554@res.com", "type":"CONTACT_NEW_NOTE", "category":"Default", "note":"test note", "building":"", "addedBy":"Demo User", "AddedDate":"2022-10-06 03:58:52", "private":false } ```