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-07-02T01:17:08Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-07-02T01:17:08Z",
  "CreateDate": "2025-07-02T01:17:08Z",
  "DisplayDate": "2025-07-02T01:17:08Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "810d769a-35f9-438e-8ae9-56099ea842cf",
  "ManageUserID": "d3691d8f-7ce8-477c-8685-c4de39f8de70",
  "ManageUserName": "sample string 9",
  "CreateUserID": "cf6de8c1-afa4-4716-ba44-7811a517638c",
  "CreateUserName": "sample string 11",
  "EditUserID": "fdbdfbbc-8ce5-41e1-9214-720cad961911",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "5b9da444-a131-48b4-a9b0-8f607f5ad1a1",
      "11238688-bd23-4281-82b6-c439805275cf"
    ],
    "Companies": [
      "8dc0b292-2d5c-49f8-969b-e584a33eb59e",
      "73228832-0e7e-44a1-b6bd-6cf211df82d8"
    ],
    "Groups": [
      "0b82f8c9-d28d-433d-90b6-ecea88765c01",
      "203c0449-297e-425c-aac9-ec88f06f28b3"
    ],
    "Opportunities": [
      "4ab713e9-f87f-4271-9791-07f317af2bb8",
      "38f457d7-fcbf-405c-b4ba-bb5c36e022f9"
    ]
  }
}

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:
"fb1b8b77-e7de-4648-af12-f90b6afc4689"