Documentation Index
Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
Use this file to discover all available pages before exploring further.
MCP tool: get_all_account_notes
Retrieves a paginated list of all notes for a specific account. This tool supports pagination for efficient data retrieval and provides comprehensive note information including content, type, visibility, and author details.
Example prompt
Input parameters
| Name | Type | Required | Description |
|---|---|---|---|
| accountId | string | Yes | The identifier of the account to find notes for |
| page | number | No | Page number for pagination (default: 1) |
| limit | number | No | Number of notes per page (default: 10) |
Response fields
Below are the fields you may see in each account note object in the response:| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier of the note |
| accountId | string | ID of the account the note belongs to |
| account | string | Name of the account |
| content | string | The content of the note |
| type | string | The type of the note (e.g., “Internal”, “Customer”) |
| typeId | string | ID of the note type attribute |
| typeConfiguration | object | Configuration of the note type |
| visibility | string | The visibility of the note (e.g., “private”, “public”) |
| attachments | array | Array of file attachments for the note |
| author | string | Name of the note author |
| authorId | string | ID of the note author |
| authorEmail | string | Email of the note author |
| metadata | object | Additional metadata for the note |
| createdAt | string (ISO8601) | Creation timestamp |
| updatedAt | string (ISO8601) | Last update timestamp |