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": "2026-06-01T09:11:04Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-06-01T09:11:04Z",
"CreateDate": "2026-06-01T09:11:04Z",
"DisplayDate": "2026-06-01T09:11:04Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "bbf07dcd-fe6a-45b9-b79e-a6054dd59ea4",
"ManageUserID": "adc52702-bcb4-4719-88f6-9ac44e489fc7",
"ManageUserName": "sample string 9",
"CreateUserID": "43e04abe-65ea-4579-89b3-2a0e79190490",
"CreateUserName": "sample string 11",
"EditUserID": "ef09c465-f03b-4a9c-bab8-61666259c4b9",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"126bf0ce-cabf-4c97-b1fa-b14816ffb168",
"1b06259e-8c51-4ad7-b7ca-17fb53d5c46f"
],
"Companies": [
"c5776ea4-f69b-4dae-8ccc-ac7e33069d27",
"f88bda0b-e5a6-4ba0-bdd8-43f121bf40c0"
],
"Groups": [
"18a317a0-9984-497c-ba9d-8ca9164dc75c",
"2ebd6a64-3238-4421-9a13-10fa7f895e6a"
],
"Opportunities": [
"eccc0a38-0eaa-4bd0-9147-1fbb56fc67db",
"35ddee6b-5b8a-404b-b5ff-580e8d175c5f"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.