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-03-04T18:49:03Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-03-04T18:49:03Z",
"CreateDate": "2026-03-04T18:49:03Z",
"DisplayDate": "2026-03-04T18:49:03Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "eb449698-204d-4542-a3d8-2da255c4897b",
"ManageUserID": "7695cc5e-6c7e-4d35-ab64-7e1f5fb6ecff",
"ManageUserName": "sample string 9",
"CreateUserID": "d5afaa46-d3af-4241-b7da-3dec25e0bb0a",
"CreateUserName": "sample string 11",
"EditUserID": "525a8de9-5bc7-44e9-be50-cbd4a8fdce27",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"6348c7a9-d026-4861-abbc-f8d44099a683",
"7659b1c1-20c4-4b04-800d-21fa8cf945eb"
],
"Companies": [
"b3a36a8c-66c7-499d-8118-d47be0536d3f",
"06682b0e-0f8a-4965-ae93-58758dc91958"
],
"Groups": [
"d67b8597-d768-417e-9e34-7bf022ddf963",
"f6076e14-3ed9-4f9b-ac2c-6797365daa76"
],
"Opportunities": [
"a7e53803-ef22-4856-9171-72428b8bf2c0",
"d1210c54-b9d3-49e1-90d8-0164886b6ad0"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.