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-18T17:29:54Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-02-18T17:29:54Z",
"CreateDate": "2026-02-18T17:29:54Z",
"DisplayDate": "2026-02-18T17:29:54Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "8be0e14c-9c44-4fac-94a4-f8fcc34ae6d8",
"ManageUserID": "62aeb93d-de05-4813-b232-c2a9fad822d1",
"ManageUserName": "sample string 9",
"CreateUserID": "ad894ede-fe7e-46fb-83db-7bf6160ef29f",
"CreateUserName": "sample string 11",
"EditUserID": "e9b2064e-f1b7-494d-8663-6e22730f46d6",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"3e4adcc1-7f6c-424b-ad44-334d4b955c61",
"bbff26ba-1061-4910-89b2-85197e1ca101"
],
"Companies": [
"f99dd4b9-3321-47b3-8fbd-1d039c8471b5",
"839a5496-82ee-43ea-8e06-ef6770496200"
],
"Groups": [
"ac52787c-c7e4-440e-b650-3040c3cddafd",
"cc197096-b23a-4498-a377-064d65449a5b"
],
"Opportunities": [
"d5daf2bd-9800-45cc-94c1-6f343c0dc60f",
"6c277f4d-e628-4e37-af36-0a445587e146"
]
}
}
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:
"2d9b940a-9f48-4c59-b40c-c0baa325b502"