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-04-15T17:03:51Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2026-04-15T17:03:51Z",
  "CreateDate": "2026-04-15T17:03:51Z",
  "DisplayDate": "2026-04-15T17:03:51Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "2e52eb21-9730-453b-a479-355b63a23a8b",
  "ManageUserID": "a559a977-4b74-428a-b65c-db34d0fe8708",
  "ManageUserName": "sample string 9",
  "CreateUserID": "ba04c5a6-7388-454c-9150-c2389a6ef82b",
  "CreateUserName": "sample string 11",
  "EditUserID": "26f70e8c-bf19-4036-a95a-d4eb8968d116",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "c9aca532-6def-472b-84bb-c96501fc45b7",
      "eacca26b-59bc-4efc-85e2-2bf77c14e26a"
    ],
    "Companies": [
      "7ddc62fa-141d-4b80-83d7-3e2668237e9b",
      "396455c9-d0df-4333-acff-ad3eea7ebf61"
    ],
    "Groups": [
      "d8e8f3c2-900d-4f21-887a-ab8183418e4d",
      "330d1004-2010-4f78-ad95-eebff41a9e90"
    ],
    "Opportunities": [
      "9925a3c6-b297-46c2-ae25-28837f763a66",
      "954c2ee2-9965-413f-aba5-802372e266f9"
    ]
  }
}

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:
"7e47e163-2171-48d8-8cac-6a9c35eebdc0"