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": "2025-12-07T23:41:00Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-12-07T23:41:00Z",
  "CreateDate": "2025-12-07T23:41:00Z",
  "DisplayDate": "2025-12-07T23:41:00Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "6ca86e6e-c7b3-4fc9-9992-1ac9488bc671",
  "ManageUserID": "ed4cd978-f41d-4c89-af44-1e5cbbe0c4ce",
  "ManageUserName": "sample string 9",
  "CreateUserID": "004a41dd-b61f-4a07-bb86-d30de3481093",
  "CreateUserName": "sample string 11",
  "EditUserID": "49a07ccd-7e45-40da-8e35-51eaa1623d52",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "5f723e9d-d515-4ab8-9d85-312f0a6ffb26",
      "2f83bb65-f372-4dd0-b2bc-9e377a8e19c9"
    ],
    "Companies": [
      "05931908-c4cd-4a7a-b863-9ecf5ee91e39",
      "7c307912-ef62-4aab-b214-1bebf501a3d5"
    ],
    "Groups": [
      "ac74eeb5-8faa-4f0e-8130-0d80171295e0",
      "c12922c2-3486-4e86-b49b-1122a1f9e1f4"
    ],
    "Opportunities": [
      "2e7296e2-58d3-4c8d-9a1d-50d0c4aa12d5",
      "8acac3a2-2f51-4534-848e-0ed3ad2a2df1"
    ]
  }
}

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:
"0f3745c3-6483-4d11-aa5a-200897227b05"