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-05T10:31:35Z", "FileType": "sample string 4", "FileExtension": "sample string 5", "FileName": "sample string 6", "Personal": true, "Shortcut": true }, "EditDate": "2025-07-05T10:31:35Z", "CreateDate": "2025-07-05T10:31:35Z", "DisplayDate": "2025-07-05T10:31:35Z", "NoteText": "sample string 5", "NoteTypeID": 6, "ID": "25b651fb-f7d9-4126-9945-42781b675cb2", "ManageUserID": "4c9f66c8-8ef1-4150-8626-aafe4b8764e3", "ManageUserName": "sample string 9", "CreateUserID": "4a51ab07-c6e1-4784-846a-8da91800b853", "CreateUserName": "sample string 11", "EditUserID": "c230d303-bc91-45cc-8477-e28103afd12e", "EditUserName": "sample string 13", "IsPrivate": true, "LinkedEntities": { "Contacts": [ "7263031a-0b94-4515-b081-3615ae7c94cb", "4948a852-3f66-4d6e-a3e8-528f9ae7870f" ], "Companies": [ "aa706307-a91c-4690-bfac-db47413ad7aa", "a510e496-7e9e-46f0-bb7f-3829a2a173a0" ], "Groups": [ "f37e822f-160f-4495-93d3-fc18ccecc780", "a37c59ce-92fd-4483-a30a-55e7c53c9f02" ], "Opportunities": [ "72ed512d-22ef-4dfe-b600-abc995439ef0", "372f2e56-12b5-4700-8514-03809dbff17a" ] } }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.