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": "2026-05-02T08:59:33Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-05-02T08:59:33Z",
"CreateDate": "2026-05-02T08:59:33Z",
"DisplayDate": "2026-05-02T08:59:33Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "4ee439f5-4880-48fa-a3bc-028c74407e29",
"ManageUserID": "b5575682-601a-4dd7-ba6d-a9cc6b2e2adc",
"ManageUserName": "sample string 9",
"CreateUserID": "7b9086af-7463-458c-a92e-605757de9d8c",
"CreateUserName": "sample string 11",
"EditUserID": "8af5f4ae-8efc-42b0-accf-b2bb41bfe8ca",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"54a40ae1-8011-4840-ae28-0810e14bbed3",
"08897537-d6ac-4ea8-bf65-7ea778ae0713"
],
"Companies": [
"39121b96-4f61-4e39-9247-171c763db5f2",
"70aa24db-bcf7-43b9-afaa-0dd4c18bc819"
],
"Groups": [
"f1b7a639-95c0-4e27-8027-e7bdf02f7b97",
"7845c21f-50d9-4f53-999b-2cc7e036c8f6"
],
"Opportunities": [
"a8f68c78-fa68-4c21-b9da-58a06507b0d5",
"1db7fbba-5cb8-41ea-998a-95de1c7a2d9e"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.