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-15T16:56:32Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-02-15T16:56:32Z",
"CreateDate": "2026-02-15T16:56:32Z",
"DisplayDate": "2026-02-15T16:56:32Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "710454ec-2219-49ed-9a26-83dece34c9fe",
"ManageUserID": "db20cbb1-355d-4811-99a1-887c11acfbf1",
"ManageUserName": "sample string 9",
"CreateUserID": "be5a57bb-31c9-4cac-a8eb-3389a150b3e4",
"CreateUserName": "sample string 11",
"EditUserID": "c92dd57b-7570-4079-9107-ad5aa8a91ded",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"ff0acfaf-ab23-4c3c-bfa1-69961483b5ec",
"918cde37-d6b4-4fa9-a0d7-0662d39ae1ff"
],
"Companies": [
"57129086-6e11-40a7-911b-3103247dd399",
"f284933d-1171-497f-9677-8116de571ab0"
],
"Groups": [
"62112792-0927-442e-abf2-7bb26dc89259",
"3820764d-f1ad-4aad-8586-d9c458546c95"
],
"Opportunities": [
"d3fdf382-15ac-4543-948c-509879d7f2d3",
"54fd7e00-f430-4441-bae7-a27a7665ba7a"
]
}
}
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:
"19c02ed3-fb2b-4ab5-87ca-467a355a487d"