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-11-14T22:41:47Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2025-11-14T22:41:47Z",
"CreateDate": "2025-11-14T22:41:47Z",
"DisplayDate": "2025-11-14T22:41:47Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "d6095778-97ee-40ab-a82b-f3a1517c1c2b",
"ManageUserID": "021f2c98-80c2-401f-87f3-c0c77b7505a0",
"ManageUserName": "sample string 9",
"CreateUserID": "c083b356-735b-4d97-8011-4952cc63160f",
"CreateUserName": "sample string 11",
"EditUserID": "07c12ea8-1ff2-49a2-a598-e4c16dd051e8",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"a52d2a8d-6c6a-4521-9841-f872a76f66ff",
"517a2f0f-0b78-44fa-a531-cd79423ae141"
],
"Companies": [
"79df9b6b-0a45-4a31-b31b-9b9e2caccaa4",
"49451eb4-a066-4444-92ab-5b00f20d133a"
],
"Groups": [
"08d47382-8746-4686-80c6-ce2f041fe5fa",
"1fcd7b5e-b228-4c48-9a21-fd459b2bb8ab"
],
"Opportunities": [
"2d45b3af-4e22-4f2d-9ad2-139c55e8be0e",
"70f8ad32-298c-4fe7-a432-266907762fa6"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.