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-29T05:08:58Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-01-29T05:08:58Z",
"CreateDate": "2026-01-29T05:08:58Z",
"DisplayDate": "2026-01-29T05:08:58Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "8b63d4d0-6a0b-4a8a-a0af-6868ccfd15e9",
"ManageUserID": "786e5426-f830-433b-bd65-a49abd460a30",
"ManageUserName": "sample string 9",
"CreateUserID": "c895e460-64d7-4ba6-bb01-535c82b2ea7c",
"CreateUserName": "sample string 11",
"EditUserID": "950c7817-46ed-4b9c-9eb9-6fdafdb63f51",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"42acdc50-fcd1-41c8-a43f-5a747cd8e6d7",
"53b36597-fd7d-45d3-b539-9d4ce467cea1"
],
"Companies": [
"fe63a0fe-e048-4c23-a98c-4fef5b41e472",
"0a805187-8594-401d-92f1-44239938c789"
],
"Groups": [
"18dbd72a-49a0-4c9f-9b58-eb485c9b7357",
"54816fc6-5694-4ef5-9fbe-b37d91b3082a"
],
"Opportunities": [
"12788498-8d86-402c-a9ca-07545f281181",
"06b7859b-c6a3-49f2-9d3e-eb9e21d07885"
]
}
}
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:
"f55abe50-0326-40bc-8565-ac019c9af13f"