List Fortnox Vouchers
fortnox_list_vouchersList vouchers from Fortnox using financial year, series, or date filters. Get paginated accounting entries with details for reconciliation and analysis.
Instructions
List vouchers (accounting entries) from Fortnox.
Retrieves a paginated list of vouchers with optional filtering.
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.
Args:
limit (number): Max results per page, 1-100 (default: 20)
page (number): Page number for pagination (default: 1)
voucher_series (string): Filter by voucher series (e.g., 'A', 'B')
financial_year (number): Fortnox financial year ID (use fortnox_list_financial_years to find)
from_date (string): Filter vouchers from this date (YYYY-MM-DD)
to_date (string): Filter vouchers to this date (YYYY-MM-DD)
response_format ('markdown' | 'json'): Output format
Returns: List of vouchers with series, number, description, and date.
Examples:
First call fortnox_list_financial_years to find that ID 4 = 2025
List vouchers for 2025: financial_year=4
List manual vouchers: voucher_series="A", financial_year=4
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination | |
| limit | No | Maximum number of results to return (1-100) | |
| to_date | No | Filter vouchers to this date (YYYY-MM-DD) | |
| from_date | No | Filter vouchers from this date (YYYY-MM-DD) | |
| financial_year | No | Fortnox financial year ID (1, 2, 3...). NOT calendar year. Use fortnox_list_financial_years to find the correct ID. | |
| voucher_series | No | Filter by voucher series (e.g., 'A', 'B') | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |