v1
latestOpenAPI 3.1.02026-07-247601.0 MBGet a List of Notes
This endpoint doesn't consume Apollo credits. Learn more about API pricing and credits.
<a href="https://knowledge.apollo.io/hc/en-us/articles/28746467476365-Notes-Overview" target="_blank">Notes</a> on Apollo let you keep track of info directly on prospect profiles.<br><br>The Get a List of Notes endpoint retrieves notes associated with a specific contact, account, opportunity, calendar event, or conversation in your Apollo account. You must provide at least one relation parameter (<code>account_id</code>, <code>contact_id</code>, <code>contact_ids</code>, <code>opportunity_id</code>, <code>calendar_event_id</code>, <code>conversation_id</code>, or <code>conversation_ids</code>). Use this endpoint to fetch notes with sorting and pagination support.
Query parameters
The ID of the contact whose notes you want to retrieve. <br><br>Example: 60a5c0b8e4b0c7001c4f1234
The ID of the account whose notes you want to retrieve. <br><br>Example: 60a5c0b8e4b0c7001c4f5678
The ID of the opportunity whose notes you want to retrieve. <br><br>Example: 60a5c0b8e4b0c7001c4f9012
The ID of the calendar event whose notes you want to retrieve. <br><br>Example: 60a5c0b8e4b0c7001c4f3456
The ID of the conversation whose notes you want to retrieve. <br><br>Example: 60a5c0b8e4b0c7001c4f7890
An array of conversation IDs to filter notes by multiple conversations.
An array of contact IDs to filter notes by multiple contacts.
Filter notes created on or after this date. Must be a valid date string. <br><br>Example: 2024-01-01
The field to sort results by. Defaults to created_at.
The direction to sort results. Defaults to desc.
The number of notes to skip for pagination. Must be a non-negative integer. Defaults to 0.
The maximum number of notes to return per request. Defaults to 25. Maximum value is 100.
Response
200
Example response
{
"notes": [
{
"id": "60a5c0b8e4b0c7001c4fabcd",
"user_id": "60a5c0b8e4b0c7001c4f0001",
"content": "Had a productive call with the client.",
"updated_at": "2024-06-15T14:30:00.000Z",
"created_at": "2024-06-15T14:30:00.000Z",
"contact_id": "60a5c0b8e4b0c7001c4f1234",
"account_id": "60a5c0b8e4b0c7001c4f5678"
}
]
}