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-03-02T11:38:57Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-03-02T11:38:57Z",
"CreateDate": "2026-03-02T11:38:57Z",
"DisplayDate": "2026-03-02T11:38:57Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "7ac51ab1-1cec-4bc2-8196-5d687ac8c28b",
"ManageUserID": "f5d3f2bd-3fe5-4bbe-8817-cb776f6db189",
"ManageUserName": "sample string 9",
"CreateUserID": "a3a1d0b4-4c80-4fab-b14b-aeaf1cb327e9",
"CreateUserName": "sample string 11",
"EditUserID": "bc3583d0-3376-4133-a371-c35aac2c67fc",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"abcb6ba7-8d2b-44f9-bf15-8a0759199d83",
"0c08802d-aa98-467e-9782-54962917645f"
],
"Companies": [
"c5ffcdf1-9c67-4bec-a78d-5f5fc4dbe5b6",
"c4d79f7b-184a-4bff-be53-e5ac60e3cb94"
],
"Groups": [
"e7b1d200-1045-4e52-a461-cd10b8fdd430",
"9cfd054b-a5e7-404b-9833-1b9d4eccdc82"
],
"Opportunities": [
"6124bb8c-6f8c-4286-920f-66354b1dff63",
"f60ef995-2d9b-4563-a540-71ddc5e34d60"
]
}
}
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:
"680a8ec6-453c-4918-833d-c560af005b29"