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-04-19T01:08:43Z", "FileType": "sample string 4", "FileExtension": "sample string 5", "FileName": "sample string 6", "Personal": true, "Shortcut": true }, "EditDate": "2025-04-19T01:08:43Z", "CreateDate": "2025-04-19T01:08:43Z", "DisplayDate": "2025-04-19T01:08:43Z", "NoteText": "sample string 5", "NoteTypeID": 6, "ID": "69fbb721-7e2e-4e91-bf69-465ba2dc3010", "ManageUserID": "0e69b3be-c0e1-435c-9ca3-bff1570eb550", "ManageUserName": "sample string 9", "CreateUserID": "15db2411-c82d-4cf3-bc85-cb83ab59210f", "CreateUserName": "sample string 11", "EditUserID": "d5adb35f-a421-438a-a8cf-9ad925b6afe5", "EditUserName": "sample string 13", "IsPrivate": true, "LinkedEntities": { "Contacts": [ "f1175509-87d8-4ecf-9983-643ed8b84d31", "72caca17-c28e-4d25-821a-a8709100ffe0" ], "Companies": [ "75a3e9fc-a861-47cf-8434-9e75383437a9", "867f1b0e-aa6e-4474-90ad-978ae832c67b" ], "Groups": [ "06b90886-c3cc-455e-9466-eb719d698ff6", "201b277d-c5b7-4655-8ceb-bf144586ff02" ], "Opportunities": [ "7a62fe24-f160-4633-bb85-c31c2a6a01b0", "2fe4b090-a817-41e5-83b7-04c40de4f6f1" ] } }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.