POST api/Notes

Create a new Note

Request Information

URI Parameters

None.

Body Parameters

Note
NameDescriptionTypeAdditional 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-28T19:21:44Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2026-02-28T19:21:44Z",
  "CreateDate": "2026-02-28T19:21:44Z",
  "DisplayDate": "2026-02-28T19:21:44Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "c75e5a51-e143-4e71-9553-a2baf3fec0dc",
  "ManageUserID": "cacf81df-a0d3-43e6-9711-8d192ce043c8",
  "ManageUserName": "sample string 9",
  "CreateUserID": "1e3f6d22-03d8-42ac-961c-2d304ceb6b43",
  "CreateUserName": "sample string 11",
  "EditUserID": "3c0de042-420d-4817-aa17-5bf84d1ff4a1",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "fef0080d-e983-490a-9b1b-a42879d6877e",
      "c3ae2f3f-1a8c-4076-b5e8-354806c66da7"
    ],
    "Companies": [
      "8bed1425-27a3-48ac-a97e-721151aff72f",
      "6844ac31-647f-46f0-8fe5-8c38ad805a24"
    ],
    "Groups": [
      "4f75c900-f859-4311-a5f6-723ba09fc304",
      "864059c4-544b-4c5d-8983-fe190833b3e5"
    ],
    "Opportunities": [
      "ba3e44ad-39d9-42c6-ae85-4d19e5467a2d",
      "f78a336e-47dc-4698-aa6f-afe0f9adbf13"
    ]
  }
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Id of the new Note record

globally unique identifier

Response Formats

application/json, text/json

Sample:
"2865716e-51a8-4cb5-878b-843c0b903bef"