List Fortnox Accounts
fortnox_list_accountsRetrieve accounts from Fortnox's chart of accounts with filters for account number range or description, enabling targeted financial data extraction.
Instructions
List accounts from the chart of accounts in Fortnox.
Retrieves a paginated list of accounts with optional filtering.
Args:
limit (number): Max results per page, 1-100 (default: 20)
page (number): Page number for pagination (default: 1)
search_description (string): Search accounts by description
from_account (number): Filter accounts from this number (1000-9999)
to_account (number): Filter accounts to this number (1000-9999)
response_format ('markdown' | 'json'): Output format
Returns: List of accounts with account number, description, and active status.
Examples:
List revenue accounts: from_account=3000, to_account=3999
List expense accounts: from_account=4000, to_account=8999
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination | |
| limit | No | Maximum number of results to return (1-100) | |
| to_account | No | Filter accounts to this account number | |
| from_account | No | Filter accounts from this account number | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |
| search_description | No | Search accounts by description |