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-11-16T22:11:19Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-11-16T22:11:19Z",
  "CreateDate": "2025-11-16T22:11:19Z",
  "DisplayDate": "2025-11-16T22:11:19Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "239f21ac-2121-4c32-aa7e-1e302292e63e",
  "ManageUserID": "cc4f9e06-201e-4516-a13e-ad1faf38cdd5",
  "ManageUserName": "sample string 9",
  "CreateUserID": "f8ad7cf1-94f5-4707-84d3-36f08c244410",
  "CreateUserName": "sample string 11",
  "EditUserID": "463da300-ac9d-4b13-97d2-2d33d6c60ebb",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "93aee597-fc7d-44c8-9e5b-ca7b3a7461b7",
      "12b1c88b-d7d0-477b-b671-df36f9a4f29a"
    ],
    "Companies": [
      "c7d7e612-1d26-4981-9c5f-c756b4272d42",
      "2e0612b2-64c9-40d7-8548-0e780145f346"
    ],
    "Groups": [
      "dcd5beec-d4d1-4fd7-88e8-c16e10d8f3e6",
      "a03e90a1-9b05-4d4d-bda4-6c1cb7d9a5f8"
    ],
    "Opportunities": [
      "b37d690e-867c-470d-b5c7-b0423d118295",
      "a0e3dbb1-242c-40b4-88e4-b636badb3dda"
    ]
  }
}

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:
"dcdb07c7-11bc-47d9-9c89-c97f75798f33"