POST api/Notes
Create a new Note
Request Information
URI Parameters
None.
Body Parameters
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-21T06:22:56Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2025-12-21T06:22:56Z",
"CreateDate": "2025-12-21T06:22:56Z",
"DisplayDate": "2025-12-21T06:22:56Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "3ae51bb5-6987-4571-9e2e-2e46989cd904",
"ManageUserID": "a22cb074-98a9-457a-b053-2331f0d9e239",
"ManageUserName": "sample string 9",
"CreateUserID": "2845ac4d-b16c-44ba-9c1a-51b99661185c",
"CreateUserName": "sample string 11",
"EditUserID": "8606d190-7588-41cd-9088-28de1f507392",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"2622a195-d543-416f-8ed9-2254bc739a49",
"da1863c7-99ff-4aab-a83b-8c6831d529aa"
],
"Companies": [
"6b58bb5f-0dc7-4b4a-b950-b0ee791d19c9",
"077c0acd-1980-418c-b1e5-37463646d430"
],
"Groups": [
"6cfd8185-c0b7-486b-aca8-888a12a355eb",
"44f25686-636d-4613-a50e-59577df13bfe"
],
"Opportunities": [
"1f223ea0-1f04-41e6-b271-750efa44c3bb",
"b330729c-37e9-4249-8816-f2067f73f5b3"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Id of the new Note record
globally unique identifierResponse Formats
application/json, text/json
Sample:
"61ffe9c0-e43c-4d7e-9382-7ad26063a2f5"