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-09T06:38:38Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2026-02-09T06:38:38Z",
  "CreateDate": "2026-02-09T06:38:38Z",
  "DisplayDate": "2026-02-09T06:38:38Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "1f28d105-35b3-4cda-b143-67faa9c1c549",
  "ManageUserID": "b87c1873-b24d-4f5f-835f-9755be1adacd",
  "ManageUserName": "sample string 9",
  "CreateUserID": "d7fd9498-d79a-43f6-a4b0-6fbb33226530",
  "CreateUserName": "sample string 11",
  "EditUserID": "da4e49f6-f176-48dc-b388-b3dfaf4cbbfe",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "1eee2e98-22db-4748-b6b1-ab353fbd3a98",
      "2806f653-2f1e-423b-8a75-41207701e282"
    ],
    "Companies": [
      "2cf67824-8fcf-481e-9f9c-8c081b125851",
      "695d501f-d5ab-4934-83d8-77f0b7a9bf55"
    ],
    "Groups": [
      "6e512ff2-1124-4d83-89b8-a97454662f7d",
      "a7ee1c42-e1d4-4313-9a35-4570f531fee5"
    ],
    "Opportunities": [
      "ea737797-9a60-42ea-b5bc-ee4edd2570af",
      "d7e3197d-7211-4c45-8e7f-269111dd6398"
    ]
  }
}

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:
"d993f281-9e8a-4539-87e2-1969351b196a"