Account Activity Report
fortnox_account_activityRetrieve voucher transactions for specific accounts to analyze expenses, revenue, or bank activity. Filter by account number, range, or date period.
Instructions
Show all voucher transactions affecting specific account(s).
IMPORTANT: The financial_year parameter uses Fortnox sequential IDs (1, 2, 3...), NOT calendar years. Use fortnox_list_financial_years first to find the correct ID for your target year.
Common use cases:
Rent expenses: account_number=5010 (or 5010-5099 range)
Salary costs: account_range={ from: 7000, to: 7999 }
Bank transactions: account_number=1930
Revenue analysis: account_range={ from: 3000, to: 3999 }
Note: This tool fetches voucher details and filters client-side since the Fortnox API doesn't support native account filtering. Use date ranges to limit the scan.
Args:
account_number (number): Single account number to filter by (1000-9999)
account_numbers (array): Multiple account numbers to filter by (max 20)
account_range (object): Account range { from: 3000, to: 3999 }
financial_year (number): Fortnox financial year ID (use fortnox_list_financial_years to find)
period ('today' | ... | 'last_year'): Convenience date period filter
from_date (string): Filter vouchers from this date (YYYY-MM-DD)
to_date (string): Filter vouchers to this date (YYYY-MM-DD)
voucher_series (string): Filter by voucher series (e.g., 'A')
include_summary (boolean): Include totals per account (default: true)
max_vouchers (number): Max vouchers to scan, 10-500 (default: 500)
response_format ('markdown' | 'json'): Output format
Returns: Transactions matching the account criteria with optional summary.
Examples:
First call fortnox_list_financial_years to find that ID 4 = 2025
Bank transactions this month: account_number=1930, financial_year=4, period="this_month"
Salary costs: account_range={ from: 7000, to: 7999 }, financial_year=4
Rent expenses: account_number=5010, financial_year=4
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||