Get all Notes
Notes
Get all Notes
Returns all notes, with the exception of replies.
You can filter notes using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties.
| Property Name | Type | Allowed Operators | Examples |
|---|---|---|---|
id | int32 | = | id=1|id=2|id=3 |
creator.id | int32 | = | creator.id=1 |
createdAt | datetime | >, <, >=, <= | createdAt<2025-02-04T10:48:24Z |
updatedAt | datetime | >, <, >=, <= | updatedAt>=2025-02-03T10:48:24Z |
GET
Get all Notes
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Include total count of the collection in the pagination response
Cursor for the next or previous page
Number of items to include in the page
Required range:
0 <= x <= 100Filter options
Additional properties to include in the response
Available options:
companiesPreview, personsPreview, opportunitiesPreview, repliesCount Response
OK
NotesPaged model
data
(notes.EntitiesNote · object | notes.InteractionNote · object | notes.AiNotetakerRootNote · object | notes.UserReplyNote · object | notes.AiNotetakerReplyNote · object)[]
required
A page of Note objects
Maximum array length:
100A Note object attached to an entity (Person, Company, Opportunity)
- notes.EntitiesNote
- notes.InteractionNote
- notes.AiNotetakerRootNote
- notes.UserReplyNote
- notes.AiNotetakerReplyNote
Example:
{
"id": 1,
"type": "entities",
"content": { "html": "<p>This is a note!</p>" },
"creator": {
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"primaryEmailAddress": "jane.smith@northpointvc.com",
"type": "internal"
},
"mentions": [],
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-21T00:00:00Z"
}