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-21T18:32:10Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2026-02-21T18:32:10Z",
  "CreateDate": "2026-02-21T18:32:10Z",
  "DisplayDate": "2026-02-21T18:32:10Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "203312b8-24c6-428d-b4a9-b72c2e1d3dba",
  "ManageUserID": "1f3939c6-f1ae-45f0-991b-db9944cc8324",
  "ManageUserName": "sample string 9",
  "CreateUserID": "f4f2b6af-b5eb-462e-8f2a-9ff9088f2d73",
  "CreateUserName": "sample string 11",
  "EditUserID": "6d51dc67-713f-472a-86a5-fd4d53a42ad4",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "9f21c090-540b-4409-8699-0e6e53b0e794",
      "d63c50e4-dc28-44e8-ad6e-699b4a4d313f"
    ],
    "Companies": [
      "84ebb8ab-0d63-4cf8-8030-4ef262ad3161",
      "93e10e93-58f4-4a0c-b75e-592fe3d05ad6"
    ],
    "Groups": [
      "cd5de299-3ef7-4b3d-9f6d-e5ba52ebcc3d",
      "86a8ea3e-9376-40d1-8092-7174ca9e41fd"
    ],
    "Opportunities": [
      "6da7a102-f91c-465d-95f0-37d3687dd526",
      "6a523bec-1cd4-4bbb-acb1-7f6586214782"
    ]
  }
}

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:
"afa52002-1d9f-4944-be72-e5c2609e0d33"