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-19T13:12:24Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-01-19T13:12:24Z",
"CreateDate": "2026-01-19T13:12:24Z",
"DisplayDate": "2026-01-19T13:12:24Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "962c8521-2110-4233-b823-71c9310cdf72",
"ManageUserID": "c663b978-7a8c-4f75-ba55-94ac96f4e3af",
"ManageUserName": "sample string 9",
"CreateUserID": "d9e0d052-a5d3-4c0c-98f7-716b266fbc2b",
"CreateUserName": "sample string 11",
"EditUserID": "4e0fea74-9d59-48f9-911e-1580f44f5442",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"6ea308ef-4d8b-41f2-96a8-04b5b094fb16",
"6c3647a8-c642-4f41-9969-dc60d5680119"
],
"Companies": [
"be8b10c4-8c7f-4332-9178-6ead1ae30a17",
"58acc1e4-7c3c-454e-9483-b0262b6fdbfa"
],
"Groups": [
"0d363df3-65ea-4a90-be6f-0538ead26579",
"ee2dc819-7cfa-4b77-b62c-6b49094c3c3d"
],
"Opportunities": [
"8feeb7fb-10e8-4505-ae31-e90265dc5d04",
"29b3145a-9a54-4972-9495-ce0bc210b5f2"
]
}
}
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:
"556e70df-e7be-4ac9-aca5-dc8159b8e563"