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-09-02T14:15:51Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-09-02T14:15:51Z",
  "CreateDate": "2025-09-02T14:15:51Z",
  "DisplayDate": "2025-09-02T14:15:51Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "b4ad71dc-c83b-4d82-97d7-5eddfd24e00d",
  "ManageUserID": "1409ea86-47d4-4799-8732-32c27e56ff7b",
  "ManageUserName": "sample string 9",
  "CreateUserID": "92d21034-e96a-46ec-bfe4-122533c3620e",
  "CreateUserName": "sample string 11",
  "EditUserID": "9347b3be-7e9d-43ee-87a7-12ba17e81656",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "801c79c1-3814-48a2-bd81-555879af1acf",
      "cfbc7d8a-6708-4b13-9686-a9e8205dfb1e"
    ],
    "Companies": [
      "8770773f-ae1b-4343-bbdb-7d6c34546e43",
      "ad4ca30e-b1d7-41f5-843f-2c5216ad2eb9"
    ],
    "Groups": [
      "2f4eef47-60ad-4896-a6d2-cc7930072db8",
      "1a09d142-6a64-4ac9-89da-312852bf8344"
    ],
    "Opportunities": [
      "27bf1660-bf13-403b-9015-689702e28ece",
      "0884d621-19ea-49f4-a51f-415e3781b2fa"
    ]
  }
}

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:
"74f9b3b7-2872-48d4-bc64-6355cd8fd7b0"