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": "2026-02-16T08:16:06Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-02-16T08:16:06Z",
"CreateDate": "2026-02-16T08:16:06Z",
"DisplayDate": "2026-02-16T08:16:06Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "13318a95-5935-47f0-80dd-3bb65a78fa25",
"ManageUserID": "77e96a93-08aa-4b2e-b941-3c896edaafb4",
"ManageUserName": "sample string 9",
"CreateUserID": "e5e77a12-c77a-4607-9131-cef8b337935c",
"CreateUserName": "sample string 11",
"EditUserID": "5c491386-520e-4a53-90e1-032051e1109c",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"b35a418a-c83f-4fda-ae86-721d44bcde76",
"5846b537-bd08-4a32-a3df-955021180e74"
],
"Companies": [
"28301aa2-ca45-4846-9453-c758e36cbcf1",
"f16bc5ae-29f6-4e2b-998a-65080af8cb5f"
],
"Groups": [
"ed9beff7-9f7f-45a4-a0a4-5994e00cf498",
"a2abf7d8-255b-4926-b7a0-e8a3c8342e4e"
],
"Opportunities": [
"23f39d0e-0776-40fa-8ac1-08ab4609c6a2",
"3f5e244c-3536-4b74-8bf5-4aa0c695cedb"
]
}
}
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:
"c28afeb2-6fef-42dc-9855-9bc714e996e1"