GET api/Notes

Get all notes in the database. Supported Headers: SelectField, Filter, Sort, Take, Skip, SortDesc, IncludeLink, DetailFormat

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2025-07-06T22:38:24Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-07-06T22:38:24Z",
    "CreateDate": "2025-07-06T22:38:24Z",
    "DisplayDate": "2025-07-06T22:38:24Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "2b954907-c352-459e-9201-9451323fdf4d",
    "ManageUserID": "c70c6175-fdef-433b-8038-9a0811f223a5",
    "ManageUserName": "sample string 9",
    "CreateUserID": "e2e46c94-a0bd-4556-ba7b-341301184393",
    "CreateUserName": "sample string 11",
    "EditUserID": "372d0803-fb96-4154-9b23-29e1d899ffc9",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "540933b3-2843-4f96-8766-b4b3347dc377",
        "ac1d54d0-96f2-4d1c-9592-f3eac03c2a4f"
      ],
      "Companies": [
        "f787aa34-921b-4821-8b4a-4e74c6dfe210",
        "7bb02d73-9d91-4c8d-9b9c-fe67527edd4b"
      ],
      "Groups": [
        "69f439a9-3e77-4c37-a21c-c718d39844ff",
        "7db5f01f-4c5f-4f74-9862-87644f7d4c37"
      ],
      "Opportunities": [
        "67b05e24-b3ee-40d0-b5c2-fe3455ef12f3",
        "d6d0a9a0-64ea-4202-a2f6-44ec45487c3f"
      ]
    }
  },
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2025-07-06T22:38:24Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-07-06T22:38:24Z",
    "CreateDate": "2025-07-06T22:38:24Z",
    "DisplayDate": "2025-07-06T22:38:24Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "2b954907-c352-459e-9201-9451323fdf4d",
    "ManageUserID": "c70c6175-fdef-433b-8038-9a0811f223a5",
    "ManageUserName": "sample string 9",
    "CreateUserID": "e2e46c94-a0bd-4556-ba7b-341301184393",
    "CreateUserName": "sample string 11",
    "EditUserID": "372d0803-fb96-4154-9b23-29e1d899ffc9",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "540933b3-2843-4f96-8766-b4b3347dc377",
        "ac1d54d0-96f2-4d1c-9592-f3eac03c2a4f"
      ],
      "Companies": [
        "f787aa34-921b-4821-8b4a-4e74c6dfe210",
        "7bb02d73-9d91-4c8d-9b9c-fe67527edd4b"
      ],
      "Groups": [
        "69f439a9-3e77-4c37-a21c-c718d39844ff",
        "7db5f01f-4c5f-4f74-9862-87644f7d4c37"
      ],
      "Opportunities": [
        "67b05e24-b3ee-40d0-b5c2-fe3455ef12f3",
        "d6d0a9a0-64ea-4202-a2f6-44ec45487c3f"
      ]
    }
  }
]