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-15T03:58:01Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-01-15T03:58:01Z",
"CreateDate": "2026-01-15T03:58:01Z",
"DisplayDate": "2026-01-15T03:58:01Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "6ef15d63-6f8c-431c-a640-75e2f4ede816",
"ManageUserID": "00ce85ed-a5c5-428e-9cac-db14da14e6fd",
"ManageUserName": "sample string 9",
"CreateUserID": "d62bc72a-4fd1-4ac6-9f9c-2b665a3ac011",
"CreateUserName": "sample string 11",
"EditUserID": "72eddb58-5e81-496f-a890-b1e9654ac095",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"25bb6148-8405-46a0-a133-a5af6c1d82fb",
"77da98d8-99fa-4152-83ea-21c58c2b4c98"
],
"Companies": [
"b96afe39-6b85-4045-b721-f335c4c20f6a",
"a21e0fa5-5d43-40ac-ad63-ed1467c95bb1"
],
"Groups": [
"ec668a47-704a-4ab4-9acb-fee0755044b0",
"804bb3ec-2480-4fce-864b-90a19a1ddc8c"
],
"Opportunities": [
"d32d28cd-8a0b-45a4-9526-8d271d48ebde",
"5d8c0ce3-9076-4a1a-9118-3f9c6c5bc531"
]
}
}
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:
"24b6270e-b722-486d-b8ce-84b9f5236528"