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-30T01:38:22Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2025-12-30T01:38:22Z",
"CreateDate": "2025-12-30T01:38:22Z",
"DisplayDate": "2025-12-30T01:38:22Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "c141b6e9-24a9-4e5d-a2c0-ca6bafc893bb",
"ManageUserID": "cddc96c3-82b3-4324-87ab-bed34d94f05f",
"ManageUserName": "sample string 9",
"CreateUserID": "2001d147-10bb-4fd8-8955-fff1869a9702",
"CreateUserName": "sample string 11",
"EditUserID": "af44122c-055b-4306-aabe-f4103c2f7c34",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"fa578557-5e6a-4db0-bdb5-ab551d2e2650",
"db5e0cfb-d5ad-41f0-9c69-a23c03992210"
],
"Companies": [
"4eb3b2dd-0b08-4e4d-9328-55e1c162f0e9",
"9fd422e5-e199-4654-ba10-5c20a93800ff"
],
"Groups": [
"7224d3b9-1f00-4219-9fcc-8f304d9d20a2",
"59e8d929-d2f4-4aae-a012-58b9d552f003"
],
"Opportunities": [
"799fb525-71f2-48cc-a53d-935ae3cf7e34",
"f7609486-fb9a-4c34-96c1-88baca3fee2f"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.