PUT api/Notes/{id}
Update an existing Note. This is not a partial update therefore, please pass in the full Note object to your request. For partial updates, use the PATCH endpoint
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | Note ID | globally unique identifier | Required | 
Body Parameters
Serialized Note record in the body of the request
Note| Name | Description | Type | Additional information | 
|---|---|---|---|
| HasAttachment | boolean | None. | |
| Attachment | Attachment | None. | |
| EditDate | SQL Column Name: [EDIT_DATE] | date | None. | 
| CreateDate | SQL Column Name: [CREATE_DATE] | date | None. | 
| DisplayDate | SQL Column Name: [NOTE_DATE] | date | None. | 
| NoteText | SQL Column Name: [NOTE] | string | None. | 
| NoteTypeID | SQL Column Name: [NOTETYPEID] | integer | None. | 
| ID | SQL Column Name: [NOTEID] | globally unique identifier | None. | 
| ManageUserID | globally unique identifier | None. | |
| ManageUserName | SQL Column Name: [RECORD_MANAGER] | string | None. | 
| CreateUserID | globally unique identifier | None. | |
| CreateUserName | SQL Column Name: [RECORD_CREATOR] | string | None. | 
| EditUserID | globally unique identifier | None. | |
| EditUserName | SQL Column Name: [LAST_EDITED_BY] | string | None. | 
| IsPrivate | SQL Column Name: [PRIVATE] | boolean | None. | 
| LinkedEntities | LinkedEntities | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "HasAttachment": true,
  "Attachment": {
    "DisplayName": "sample string 1",
    "FileSize": 2.1,
    "LastModified": "2025-10-31T23:21:54Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-10-31T23:21:54Z",
  "CreateDate": "2025-10-31T23:21:54Z",
  "DisplayDate": "2025-10-31T23:21:54Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "ab2164bd-cd83-4721-8b61-28b6749fd8a1",
  "ManageUserID": "c17ee6a5-02e4-4313-9067-d502a0531073",
  "ManageUserName": "sample string 9",
  "CreateUserID": "d3235028-3ab1-47aa-8120-554760f98e94",
  "CreateUserName": "sample string 11",
  "EditUserID": "95788c35-80da-406e-8ad5-30cb05156ae8",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "6fb2b65e-c4a1-4afc-8163-448acd7a355e",
      "97b5e19c-c982-4fd5-8783-fdf550870f88"
    ],
    "Companies": [
      "6134f70c-d583-43c2-815f-632ef17a62b0",
      "6c7f8851-dfb3-4bce-89ea-7d9246677415"
    ],
    "Groups": [
      "c50629c3-9a8e-42e2-88c5-08200f010477",
      "24da0df3-af1c-46d4-abc2-f9bd862755b4"
    ],
    "Opportunities": [
      "fb1f8ef9-2c5d-4636-85a3-145aec1d3107",
      "f352e593-d6f2-435d-a9cd-ef8ba75d31b0"
    ]
  }
}
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
None.