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-01-30T05:41:52Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-01-30T05:41:52Z",
"CreateDate": "2026-01-30T05:41:52Z",
"DisplayDate": "2026-01-30T05:41:52Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "25431d37-b996-4aba-a767-76349289b93f",
"ManageUserID": "c46a3a67-a9f6-43da-ac6e-a67850faac84",
"ManageUserName": "sample string 9",
"CreateUserID": "b2b90f54-48ff-49eb-9d8d-bbf97607717a",
"CreateUserName": "sample string 11",
"EditUserID": "e617703a-496d-49d0-979d-3784db91f917",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"5dad4364-645f-473c-8ccb-b992eeeedb74",
"cc5a7cde-947a-4c93-a77b-d493a2cf3a79"
],
"Companies": [
"5993ded3-6b00-4cae-a0de-3489d8ccf045",
"30b8b1c9-6701-4db4-9c3c-a3ecbcf262d3"
],
"Groups": [
"4519d067-da09-4952-b4af-f89437133c66",
"62fc06c6-27b3-4a23-8e81-af1aec7bcae0"
],
"Opportunities": [
"b8619f0d-0a4e-4bcb-82c7-1244fead2e86",
"fc7750b8-b7a5-4bc8-bc42-416198afea1c"
]
}
}
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:
"69556155-a3a1-4482-b1fe-adca260ebb3a"