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-12-15T11:43:21Z",
    "FileType": "sample string 4",
    "FileExtension": "sample string 5",
    "FileName": "sample string 6",
    "Personal": true,
    "Shortcut": true
  },
  "EditDate": "2025-12-15T11:43:21Z",
  "CreateDate": "2025-12-15T11:43:21Z",
  "DisplayDate": "2025-12-15T11:43:21Z",
  "NoteText": "sample string 5",
  "NoteTypeID": 6,
  "ID": "b58ea31b-22ff-4d00-9ca6-1fe3306b1f5d",
  "ManageUserID": "2fedd6eb-8b70-4918-85a5-f8b532e5daee",
  "ManageUserName": "sample string 9",
  "CreateUserID": "112dc9ed-9bfc-478c-875e-279ab58aab52",
  "CreateUserName": "sample string 11",
  "EditUserID": "531eb2fb-3070-43fb-bf69-218dbbc24574",
  "EditUserName": "sample string 13",
  "IsPrivate": true,
  "LinkedEntities": {
    "Contacts": [
      "e025d1ad-e738-4986-9769-d3822cebbba6",
      "f34ad0f8-f6c7-4dae-85a8-6416a33b8f07"
    ],
    "Companies": [
      "e7e6e622-114e-419f-80f0-53f888ae7e43",
      "e6ab31ad-798e-498a-a17c-40c93aab486b"
    ],
    "Groups": [
      "8325b53e-4b7f-4fc4-aab2-b8a0daa1c48c",
      "e5d3e34a-9fa8-440b-9559-ae407f513e06"
    ],
    "Opportunities": [
      "e007fbcf-2dc6-4c0f-901a-6107dd3d140b",
      "b3bb83da-ae31-4b29-9260-0f7f4834d71b"
    ]
  }
}

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:
"da1f2867-e842-4730-b34e-d3280754f6c2"