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
NoteName | 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-07-05T04:51:30Z", "FileType": "sample string 4", "FileExtension": "sample string 5", "FileName": "sample string 6", "Personal": true, "Shortcut": true }, "EditDate": "2025-07-05T04:51:30Z", "CreateDate": "2025-07-05T04:51:30Z", "DisplayDate": "2025-07-05T04:51:30Z", "NoteText": "sample string 5", "NoteTypeID": 6, "ID": "1c51f598-d9f6-4a6e-b8e6-f327fbb52480", "ManageUserID": "5952b71f-0959-43c0-b035-e203070d1196", "ManageUserName": "sample string 9", "CreateUserID": "f7bdd471-efb0-4074-b905-2b59076027d0", "CreateUserName": "sample string 11", "EditUserID": "d311bfaf-d7a9-4709-8ca2-2aedf78cb55b", "EditUserName": "sample string 13", "IsPrivate": true, "LinkedEntities": { "Contacts": [ "79a25b47-04a9-4262-9ff7-506faa735bfb", "7fb9f207-dfd1-4213-b46a-e7240e668ca9" ], "Companies": [ "16468a42-c653-418e-bff6-f400325ece6e", "7a6ead97-b592-49d6-902a-e5fb3b907b85" ], "Groups": [ "9550751d-1cba-4baa-827b-10398e60c058", "ad313318-5920-4f3a-ac89-4f4d64884b91" ], "Opportunities": [ "1e096202-4c68-484b-a3c7-915f4a409537", "fea03426-481f-42d4-af43-56b225e9bf17" ] } }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.