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-11T15:11:16Z",
"FileType": "sample string 4",
"FileExtension": "sample string 5",
"FileName": "sample string 6",
"Personal": true,
"Shortcut": true
},
"EditDate": "2026-02-11T15:11:16Z",
"CreateDate": "2026-02-11T15:11:16Z",
"DisplayDate": "2026-02-11T15:11:16Z",
"NoteText": "sample string 5",
"NoteTypeID": 6,
"ID": "4c35e137-886a-4dc2-967b-e174b9a28464",
"ManageUserID": "4dc1d079-386a-4c0c-bd79-c502142f95f2",
"ManageUserName": "sample string 9",
"CreateUserID": "d7cbb829-2c81-4536-87de-cf7e914de455",
"CreateUserName": "sample string 11",
"EditUserID": "bc0c0c4c-969b-40e3-a3b2-199621edb6c0",
"EditUserName": "sample string 13",
"IsPrivate": true,
"LinkedEntities": {
"Contacts": [
"57e120fa-57a4-4812-9663-bd3a2ae07cd2",
"9facaccf-9ce2-47cb-ba3c-29aa0ec4d714"
],
"Companies": [
"a1f3f0bc-540f-4de0-8563-2f68cba9b30f",
"469d69ea-686d-48be-93d1-fa3541be6cb9"
],
"Groups": [
"566cd50f-366b-48bc-a774-34ad012439d3",
"dea5fa2c-6b12-414e-bef8-77b17c4db0f2"
],
"Opportunities": [
"32f52a68-2f4f-40fd-8b9f-981c97b835c1",
"2495b3e7-1177-4d3b-bc6c-f355b1f99200"
]
}
}
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:
"7ce68879-065c-4759-9d9f-c3c25740920b"