| ⚠️ This endpoint is currently in BETA |
|---|
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 | Description | Type | Allowed Operators | Examples |
|---|---|---|---|---|
id |
Filter notes by id | int32 |
= |
id=1 |
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
Example response for AI Notetaker notes.
{- "data": [
- {
- "id": 1,
- "type": "ai-notetaker",
- "content": {
- "html": "<p> This is an AI Notetaker note! </p>"
}, - "creator": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}, - "mentions": [ ],
- "createdAt": "2023-01-01T00:00:00Z",
- "updatedAt": "2023-01-21T00:00:00Z"
}, - {
- "id": 2,
- "type": "ai-notetaker",
- "content": {
- "html": "<p> This is another AI Notetaker note! </p>"
}, - "creator": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}, - "mentions": [ ],
- "createdAt": "2024-01-01T00:00:00Z",
- "updatedAt": "2024-01-21T00:00:00Z"
}
], - "pagination": {
}
}| ⚠️ This endpoint is currently in BETA |
|---|
Get a Note with a given id
OK
| X-Ratelimit-Limit-User | integer Number of requests allowed per minute for the user |
| X-Ratelimit-Limit-User-Remaining | integer Number of requests remaining for the user |
| X-Ratelimit-Limit-User-Reset | integer Time in seconds before the limit resets for the user |
| X-Ratelimit-Limit-Org | integer Number of requests allowed per month for the account |
| X-Ratelimit-Limit-Org-Remaining | integer Number of requests remaining for the account |
| X-Ratelimit-Limit-Org-Reset | integer Time in seconds before the limit resets for the account |
| type required | string The type of the note Value: "entities" | ||||||||||
| repliesCount | integer <int32> [ 0 .. 2147483647 ] The number of replies to this note. This is only included if the | ||||||||||
object (notes.PermissionSettings) The permission settings of a note | |||||||||||
object (notes.OpportunitiesPreview) A preview for attached Opportunities on a Note | |||||||||||
object (notes.PersonsPreview) A preview for attached Persons on a Note | |||||||||||
object (notes.CompaniesPreview) A preview for attached Companies on a Note | |||||||||||
| id required | integer <int32> [ 1 .. 2147483647 ] The id of the note | ||||||||||
required | object (notes.Content) A note content | ||||||||||
required | object (PersonData) | ||||||||||
| |||||||||||
required | Array of any (notes.Mention) <= 100 items The mentions in the note | ||||||||||
| createdAt required | string <date-time> The date and time the note was created | ||||||||||
| updatedAt required | string or null <date-time> The date and time the note was last updated | ||||||||||
Bad Request
Not Found
Errors
Example response for an AI Notetaker note.
{- "id": 1,
- "type": "ai-notetaker",
- "content": {
- "html": "<p> This is an AI Notetaker note! </p>"
}, - "creator": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}, - "mentions": [ ],
- "createdAt": "2023-01-01T00:00:00Z",
- "updatedAt": "2023-01-21T00:00:00Z"
}| ⚠️ This endpoint is currently in BETA |
|---|
Returns directly attached companies for a given Note.
OK
| X-Ratelimit-Limit-User | integer Number of requests allowed per minute for the user |
| X-Ratelimit-Limit-User-Remaining | integer Number of requests remaining for the user |
| X-Ratelimit-Limit-User-Reset | integer Time in seconds before the limit resets for the user |
| X-Ratelimit-Limit-Org | integer Number of requests allowed per month for the account |
| X-Ratelimit-Limit-Org-Remaining | integer Number of requests remaining for the account |
| X-Ratelimit-Limit-Org-Reset | integer Time in seconds before the limit resets for the account |
required | Array of objects (CompanyData) <= 100 items A page of Company results |
required | object (Pagination) |
Bad Request
Not Found
Errors
{- "pagination": {
}, - "data": [
- {
- "domain": "acme.co",
- "name": "Acme",
- "id": 1
}, - {
- "domain": "acme.co",
- "name": "Acme",
- "id": 1
}
]
}| ⚠️ This endpoint is currently in BETA |
|---|
Returns directly attached opportunities for a given Note.
OK
| X-Ratelimit-Limit-User | integer Number of requests allowed per minute for the user |
| X-Ratelimit-Limit-User-Remaining | integer Number of requests remaining for the user |
| X-Ratelimit-Limit-User-Reset | integer Time in seconds before the limit resets for the user |
| X-Ratelimit-Limit-Org | integer Number of requests allowed per month for the account |
| X-Ratelimit-Limit-Org-Remaining | integer Number of requests remaining for the account |
| X-Ratelimit-Limit-Org-Reset | integer Time in seconds before the limit resets for the account |
required | Array of objects (Opportunity) <= 100 items A page of Opportunity results |
required | object (Pagination) |
Bad Request
Not Found
Errors
Example response on fetching opportunities attached to a note.
{- "data": [
- {
- "id": 1,
- "name": "Opp Name",
- "listId": 1000
}, - {
- "id": 2,
- "name": "Another Opp Name",
- "listId": 1001
}
],
}| ⚠️ This endpoint is currently in BETA |
|---|
Returns directly attached persons for a given Note.
OK
| X-Ratelimit-Limit-User | integer Number of requests allowed per minute for the user |
| X-Ratelimit-Limit-User-Remaining | integer Number of requests remaining for the user |
| X-Ratelimit-Limit-User-Reset | integer Time in seconds before the limit resets for the user |
| X-Ratelimit-Limit-Org | integer Number of requests allowed per month for the account |
| X-Ratelimit-Limit-Org-Remaining | integer Number of requests remaining for the account |
| X-Ratelimit-Limit-Org-Reset | integer Time in seconds before the limit resets for the account |
required | Array of objects (PersonData) <= 100 items A page of Person results | ||||||||||
Array (<= 100 items)
| |||||||||||
required | object (Pagination) | ||||||||||
Bad Request
Not Found
Errors
{- "pagination": {
}, - "data": [
- {
- "firstName": "Jane",
- "lastName": "Doe",
- "id": 1,
- "type": "internal",
- "primaryEmailAddress": "jane.doe@acme.co"
}, - {
- "firstName": "Jane",
- "lastName": "Doe",
- "id": 1,
- "type": "internal",
- "primaryEmailAddress": "jane.doe@acme.co"
}
]
}| ⚠️ This endpoint is currently in BETA |
|---|
This endpoint returns reply notes for a given note id.
You can filter replies 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
| X-Ratelimit-Limit-User | integer Number of requests allowed per minute for the user |
| X-Ratelimit-Limit-User-Remaining | integer Number of requests remaining for the user |
| X-Ratelimit-Limit-User-Reset | integer Time in seconds before the limit resets for the user |
| X-Ratelimit-Limit-Org | integer Number of requests allowed per month for the account |
| X-Ratelimit-Limit-Org-Remaining | integer Number of requests remaining for the account |
| X-Ratelimit-Limit-Org-Reset | integer Time in seconds before the limit resets for the account |
required | Array of any (notes.Reply) <= 100 items A page of Note Replies | ||||||||||||||||
Array (<= 100 items)
| |||||||||||||||||
required | object (PaginationWithTotalCount) | ||||||||||||||||
Bad Request
Not Found
Errors
{- "data": [
- {
- "id": 2,
- "type": "user-reply",
- "content": {
- "html": "<p> This is a user reply note. <span data-type=\"note-mention\" data-note-mention-type=\"person\" data-note-mention-person-id=\"1\"> John Doe </span> was mentioned. </p>"
}, - "creator": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}, - "mentions": [
- {
- "id": 1,
- "type": "person",
- "person": {
- "id": 1,
- "firstName": "John",
- "lastName": "Doe",
- "primaryEmailAddress": "john.doe@acme.co",
- "type": "internal"
}
}
], - "parent": {
- "id": 1
}, - "createdAt": "2023-01-01T00:00:00Z",
- "updatedAt": "2023-02-01T00:00:00Z"
}
], - "pagination": {
}
}