POST api/Notes
Create a new Note
Request Information
URI Parameters
None.
Body Parameters
NoteName | 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": "2025-09-17T21:31:21Z", "FileType": "sample string 4", "FileExtension": "sample string 5", "FileName": "sample string 6", "Personal": true, "Shortcut": true }, "EditDate": "2025-09-17T21:31:21Z", "CreateDate": "2025-09-17T21:31:21Z", "DisplayDate": "2025-09-17T21:31:21Z", "NoteText": "sample string 5", "NoteTypeID": 6, "ID": "4bdbf757-9687-4ec5-89bf-0b78e03c35b3", "ManageUserID": "d81c5400-79fb-41d5-831e-6459bc638263", "ManageUserName": "sample string 9", "CreateUserID": "8100e7e2-5874-4cc1-acb3-adcc601235b2", "CreateUserName": "sample string 11", "EditUserID": "16acf945-36a6-4b38-b4e1-6611817cf699", "EditUserName": "sample string 13", "IsPrivate": true, "LinkedEntities": { "Contacts": [ "31f624d7-17b8-46e6-a020-79e62c42d421", "3ffa688b-3016-4681-a6ff-e54100aafc1e" ], "Companies": [ "00ba306e-9185-4dc6-89de-3c095d4a0d58", "ecffa991-71f1-417b-a618-ccc31f2c16bc" ], "Groups": [ "6512c228-c3e3-4829-b977-afaa1a98a7f9", "6d3ba78b-742a-435a-9036-f8245b978b9b" ], "Opportunities": [ "02ca6d78-fd6a-40ca-81fd-89fe73bd1d3a", "fb69a163-f396-446b-a379-133fd8877917" ] } }
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:
"f999d234-3192-4137-a9c6-7dca8a2ff48e"