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-12-15T11:36:49Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2025-12-15T11:36:49Z",
"CreateDate": "2025-12-15T11:36:49Z",
"DisplayDate": "2025-12-15T11:36:49Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "61e75426-8351-441c-a34b-717d43b146bb",
"ManageUserID": "a32748e8-76e6-46a6-a90d-7ad4cd1229b9",
"ManageUserName": "sample string 9",
"CreateUserID": "31a197a0-6769-4177-be98-1e1dbb7a2ec6",
"CreateUserName": "sample string 11",
"EditUserID": "170c9bc8-3ed9-4d15-a1be-6706814773d5",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"ccda6eee-9465-4c5a-a448-d0dea2b9c17f",
"959c28c3-56a6-4488-b1d7-5d79d7242a34"
],
"Companies": [
"fc233b88-81c8-45be-b9f6-06c069443721",
"c1e4b008-264e-4287-bd59-b5699aa57742"
],
"Groups": [
"b6d915b5-b09e-439a-aaf5-82940edbf509",
"371e9bc0-5945-4e27-8ae9-fb576369204b"
],
"Opportunities": [
"20e4f7a1-a172-4879-8e0d-39867abf7dce",
"6d8a747e-c79d-4285-b42a-f3e88c466a3d"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.