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-11-17T16:29:02Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-11-17T16:29:02Z",
    "CreateDate": "2025-11-17T16:29:02Z",
    "DisplayDate": "2025-11-17T16:29:02Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "a4e348ad-fad8-4ab7-9217-0db0655047fb",
    "ManageUserID": "caeb31ad-684a-4a8f-82ed-ccbd14a842d9",
    "ManageUserName": "sample string 9",
    "CreateUserID": "c06bb182-4e19-444f-afc4-01c8cfdc45df",
    "CreateUserName": "sample string 11",
    "EditUserID": "b56b4fe1-8b5f-47b1-a211-c91ef78b2e6a",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "9bf26157-63f5-4323-944a-7c2014d7052c",
        "1db8f383-b9df-47f8-80e9-c9127ed9c9ec"
      ],
      "Companies": [
        "6a908a9b-47e2-4990-bbc1-c27565309453",
        "d0e2dbf4-5494-4393-a27f-fad16e5d73ba"
      ],
      "Groups": [
        "673caa28-5096-4f73-907e-3b2b45eb77cf",
        "f7ddad3c-2c07-46fe-b6be-6660dfd87981"
      ],
      "Opportunities": [
        "794dfe03-4b07-49c5-83ff-996f882dd4ec",
        "e7c7c583-4cec-43fc-b724-a87ae0183f6f"
      ]
    }
  },
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2025-11-17T16:29:02Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-11-17T16:29:02Z",
    "CreateDate": "2025-11-17T16:29:02Z",
    "DisplayDate": "2025-11-17T16:29:02Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "a4e348ad-fad8-4ab7-9217-0db0655047fb",
    "ManageUserID": "caeb31ad-684a-4a8f-82ed-ccbd14a842d9",
    "ManageUserName": "sample string 9",
    "CreateUserID": "c06bb182-4e19-444f-afc4-01c8cfdc45df",
    "CreateUserName": "sample string 11",
    "EditUserID": "b56b4fe1-8b5f-47b1-a211-c91ef78b2e6a",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "9bf26157-63f5-4323-944a-7c2014d7052c",
        "1db8f383-b9df-47f8-80e9-c9127ed9c9ec"
      ],
      "Companies": [
        "6a908a9b-47e2-4990-bbc1-c27565309453",
        "d0e2dbf4-5494-4393-a27f-fad16e5d73ba"
      ],
      "Groups": [
        "673caa28-5096-4f73-907e-3b2b45eb77cf",
        "f7ddad3c-2c07-46fe-b6be-6660dfd87981"
      ],
      "Opportunities": [
        "794dfe03-4b07-49c5-83ff-996f882dd4ec",
        "e7c7c583-4cec-43fc-b724-a87ae0183f6f"
      ]
    }
  }
]