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-09-02T20:25:36Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-09-02T20:25:36Z",
    "CreateDate": "2025-09-02T20:25:36Z",
    "DisplayDate": "2025-09-02T20:25:36Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "24368df4-8b34-43c3-9d82-f0b40e3cb935",
    "ManageUserID": "156318c9-2b3c-458e-ac21-f2292e79c199",
    "ManageUserName": "sample string 9",
    "CreateUserID": "49654a23-102c-4f7f-93c5-66a3b0d8d9ef",
    "CreateUserName": "sample string 11",
    "EditUserID": "8b1f4fd7-dc7a-4b5d-9b13-7d46e260f630",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "923e52b4-3e53-43b0-9caf-091311a65fd8",
        "f027f3be-59eb-4a4a-a9ab-90d7ae60feb1"
      ],
      "Companies": [
        "7bf8d059-9caa-4177-8c63-752da3dc74a6",
        "0aa72adc-0761-4f18-b444-0982c0669389"
      ],
      "Groups": [
        "8efc17a6-ff6c-4161-a756-be306341ab1b",
        "48cc0ada-f5e9-4925-9d6a-c0defea22c6f"
      ],
      "Opportunities": [
        "014c87ba-6d2e-46a2-8bb4-86e605da9d0b",
        "97bdb35d-a617-45ff-bb61-c37b2b4b3f86"
      ]
    }
  },
  {
    "HasAttachment": true,
    "Attachment": {
      "DisplayName": "sample string 1",
      "FileSize": 2.1,
      "LastModified": "2025-09-02T20:25:36Z",
      "FileType": "sample string 4",
      "FileExtension": "sample string 5",
      "FileName": "sample string 6",
      "Personal": true,
      "Shortcut": true
    },
    "EditDate": "2025-09-02T20:25:36Z",
    "CreateDate": "2025-09-02T20:25:36Z",
    "DisplayDate": "2025-09-02T20:25:36Z",
    "NoteText": "sample string 5",
    "NoteTypeID": 6,
    "ID": "24368df4-8b34-43c3-9d82-f0b40e3cb935",
    "ManageUserID": "156318c9-2b3c-458e-ac21-f2292e79c199",
    "ManageUserName": "sample string 9",
    "CreateUserID": "49654a23-102c-4f7f-93c5-66a3b0d8d9ef",
    "CreateUserName": "sample string 11",
    "EditUserID": "8b1f4fd7-dc7a-4b5d-9b13-7d46e260f630",
    "EditUserName": "sample string 13",
    "IsPrivate": true,
    "LinkedEntities": {
      "Contacts": [
        "923e52b4-3e53-43b0-9caf-091311a65fd8",
        "f027f3be-59eb-4a4a-a9ab-90d7ae60feb1"
      ],
      "Companies": [
        "7bf8d059-9caa-4177-8c63-752da3dc74a6",
        "0aa72adc-0761-4f18-b444-0982c0669389"
      ],
      "Groups": [
        "8efc17a6-ff6c-4161-a756-be306341ab1b",
        "48cc0ada-f5e9-4925-9d6a-c0defea22c6f"
      ],
      "Opportunities": [
        "014c87ba-6d2e-46a2-8bb4-86e605da9d0b",
        "97bdb35d-a617-45ff-bb61-c37b2b4b3f86"
      ]
    }
  }
]