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-04-11T06:51:35Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-04-11T06:51:35Z",
    "CreateDate": "2025-04-11T06:51:35Z",
    "DisplayDate": "2025-04-11T06:51:35Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "eb2c6ec3-63d5-405d-8ca0-579cbbf2a7df",
    "ManageUserID": "aebbe68d-ed5b-4849-a5f0-f265af3a9956",
    "ManageUserName": "sample string 9",
    "CreateUserID": "1c96893f-93f1-4c3f-8bf0-61537b1c56db",
    "CreateUserName": "sample string 11",
    "EditUserID": "56e427b4-e7ab-4422-a5eb-eb393dd3906d",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "ccdb74a5-632b-4e26-9f9b-b6398ecbc13e",
        "6ab0cc83-9d6c-449f-a459-421c4c576f63"
      ],
      "Companies": [
        "ee133430-db72-4b6d-8b07-b1c7fe299561",
        "93b39cea-f19e-40dc-a211-9115028dee70"
      ],
      "Groups": [
        "889e5a29-e4b5-42d5-b9a7-fabbfb1b73df",
        "d082ece3-9898-4b45-a433-76cd341ffa64"
      ],
      "Opportunities": [
        "d441be9d-111c-442c-bc74-0c7fdc4947c8",
        "8d526eb3-464f-4c80-93b0-5abe5bc4ca8a"
      ]
    }
  },
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2025-04-11T06:51:35Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-04-11T06:51:35Z",
    "CreateDate": "2025-04-11T06:51:35Z",
    "DisplayDate": "2025-04-11T06:51:35Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "eb2c6ec3-63d5-405d-8ca0-579cbbf2a7df",
    "ManageUserID": "aebbe68d-ed5b-4849-a5f0-f265af3a9956",
    "ManageUserName": "sample string 9",
    "CreateUserID": "1c96893f-93f1-4c3f-8bf0-61537b1c56db",
    "CreateUserName": "sample string 11",
    "EditUserID": "56e427b4-e7ab-4422-a5eb-eb393dd3906d",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "ccdb74a5-632b-4e26-9f9b-b6398ecbc13e",
        "6ab0cc83-9d6c-449f-a459-421c4c576f63"
      ],
      "Companies": [
        "ee133430-db72-4b6d-8b07-b1c7fe299561",
        "93b39cea-f19e-40dc-a211-9115028dee70"
      ],
      "Groups": [
        "889e5a29-e4b5-42d5-b9a7-fabbfb1b73df",
        "d082ece3-9898-4b45-a433-76cd341ffa64"
      ],
      "Opportunities": [
        "d441be9d-111c-442c-bc74-0c7fdc4947c8",
        "8d526eb3-464f-4c80-93b0-5abe5bc4ca8a"
      ]
    }
  }
]