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": "2026-08-29T03:27:04Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2026-08-29T03:27:04Z",
    "CreateDate": "2026-08-29T03:27:04Z",
    "DisplayDate": "2026-08-29T03:27:04Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "979ece6d-8edf-446d-aaa2-c72c4928ee6b",
    "ManageUserID": "fb4671b7-68ad-45a4-8e7f-4a76f9096ca2",
    "ManageUserName": "sample string 9",
    "CreateUserID": "6bc9d5aa-e6d4-4d3c-a081-20862f6822b1",
    "CreateUserName": "sample string 11",
    "EditUserID": "f6a7f766-7816-450f-ad72-bf1099f6b751",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "97fee58c-4a03-4d97-8464-6a333debb497",
        "a8aec976-355a-4bbf-8190-4997ee0f933a"
      ],
      "Companies": [
        "06023c29-d65f-4758-bc8b-0d9dd1e0ee0b",
        "c3a63777-e1a1-4601-8ef4-786680a98545"
      ],
      "Groups": [
        "b1828c02-53db-4f81-927b-768507777848",
        "22dbc561-e13c-45f9-a614-98cbf4114d42"
      ],
      "Opportunities": [
        "6320f6b8-d8ae-4b5b-95e9-e2779fcf865a",
        "916e20f7-a86b-4abc-b543-fd384f03cc31"
      ]
    }
  },
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2026-08-29T03:27:04Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2026-08-29T03:27:04Z",
    "CreateDate": "2026-08-29T03:27:04Z",
    "DisplayDate": "2026-08-29T03:27:04Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "979ece6d-8edf-446d-aaa2-c72c4928ee6b",
    "ManageUserID": "fb4671b7-68ad-45a4-8e7f-4a76f9096ca2",
    "ManageUserName": "sample string 9",
    "CreateUserID": "6bc9d5aa-e6d4-4d3c-a081-20862f6822b1",
    "CreateUserName": "sample string 11",
    "EditUserID": "f6a7f766-7816-450f-ad72-bf1099f6b751",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "97fee58c-4a03-4d97-8464-6a333debb497",
        "a8aec976-355a-4bbf-8190-4997ee0f933a"
      ],
      "Companies": [
        "06023c29-d65f-4758-bc8b-0d9dd1e0ee0b",
        "c3a63777-e1a1-4601-8ef4-786680a98545"
      ],
      "Groups": [
        "b1828c02-53db-4f81-927b-768507777848",
        "22dbc561-e13c-45f9-a614-98cbf4114d42"
      ],
      "Opportunities": [
        "6320f6b8-d8ae-4b5b-95e9-e2779fcf865a",
        "916e20f7-a86b-4abc-b543-fd384f03cc31"
      ]
    }
  }
]