Paginate through Opportunities in Affinity. Returns basic information but not field data on each Opportunity.
To access field data on Opportunities, use the /lists/{list_id}/list-entries
or the /v2/lists/{list_id}/saved-views/{view_id}/list-entries GET endpoint.
Requires the "Export data from Lists" permission.
OK
required | Array of objects (Opportunity) <= 100 items A page of Opportunity results |
required | object (Pagination) |
Bad Request
Forbidden
Not Found
Errors
{- "pagination": {
}, - "data": [
- {
- "listId": 1,
- "name": "Acme Upsell $10k",
- "id": 1
}, - {
- "listId": 1,
- "name": "Acme Upsell $10k",
- "id": 1
}
]
}Returns basic information but not field data on the requested Opportunity.
To access field data on Opportunities, use the /lists/{list_id}/list-entries
or the /v2/lists/{list_id}/saved-views/{view_id}/list-entries GET endpoint.
Requires the "Export data from Lists" permission.
OK
Bad Request
Forbidden
Not Found
Errors
{- "listId": 1,
- "name": "Acme Upsell $10k",
- "id": 1
}| ⚠️ This endpoint is currently in BETA |
|---|
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 |
OK
Bad Request
Not Found
Errors
{- "data": [
- {
- "id": 1,
- "type": "entities",
- "content": {
- "html": "<p>test</p><p>%</p>"
}, - "creator": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}, - "mentions": [
- {
- "id": 1,
- "type": "person",
- "person": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}
}
], - "createdAt": "2023-01-01T00:00:00Z",
- "updatedAt": "2023-01-01T00:00:00Z",
- "permissions": {
- "sharingType": "private",
- "owner": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}
}
}
], - "pagination": {
}
}