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-23T09:11:18Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2026-02-23T09:11:18Z",
  "CreateDate": "2026-02-23T09:11:18Z",
  "DisplayDate": "2026-02-23T09:11:18Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "4e78a6b4-3df8-4f9d-a0bf-9be997aee50a",
  "ManageUserID": "cedda0cb-fa51-48a4-bb43-a2ecf7425fdf",
  "ManageUserName": "sample string 9",
  "CreateUserID": "feb56f14-aa75-4c69-9900-4c21927852ef",
  "CreateUserName": "sample string 11",
  "EditUserID": "c6469df4-961c-496f-842c-c81154d08cbf",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "df432510-d16c-428b-8c56-4432ede9d1a9",
      "8bc378ec-54eb-4ee3-90f3-d5deb096e423"
    ],
    "Companies": [
      "e44008e6-5e7b-4c16-9ab6-2237fd68acec",
      "134e1bcf-a12e-4dc7-97cf-8cc3966a0f8f"
    ],
    "Groups": [
      "997f072a-2b16-44b7-8e9a-56e0a99da46e",
      "ac68b41d-3bd2-4d06-99cb-b247c9869647"
    ],
    "Opportunities": [
      "cc0c4e93-4a5d-4b29-9a9c-b0bea3740a14",
      "8d9ce6ca-0808-4a23-a414-1c313df9cac5"
    ]
  }
}

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:
"c8f9966f-b089-4b95-b7c5-b09988678f07"