Returns Notes for a given Opportunity which includes directly attached notes and those attached to persons on this Opportunity.
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 | Description | Type | Allowed Operators | Examples |
|---|---|---|---|---|
creator.id | Filter notes by the creator of the note | int32 | = | creator.id=1 |
createdAt | Filter notes by when it was created | datetime | >, <, >=, <= | createdAt<2025-02-04T10:48:24Z |
updatedAt | Filter notes by when it was updated | datetime | >, <, >=, <= | updatedAt>=2025-02-03T10:48:24Z |
Documentation Index
Fetch the complete documentation index at: https://developer.affinity.co/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Opportunity ID
1 <= x <= 9007199254740991Filter options
Cursor for the next or previous page
Number of items to include in the page
0 <= x <= 100Include total count of the collection in the pagination response
OK
NotesPaged model
A page of Note objects
100A Note object attached to an entity (Person, Company, Opportunity)
{
"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"
}