List Fortnox Customers
fortnox_list_customersRetrieve paginated customer lists from Fortnox accounting, filtering by status, name, or customer number.
Instructions
List customers from Fortnox accounting system.
Retrieves a paginated list of customers with optional filtering by status, name, or customer number.
Args:
limit (number): Max results per page, 1-100 (default: 20)
page (number): Page number for pagination (default: 1)
filter ('active' | 'inactive'): Filter by customer status
search_name (string): Search customers by name (partial match)
customer_number (string): Filter by specific customer number
organisation_number (string): Filter by organisation number
response_format ('markdown' | 'json'): Output format
Returns: List of customers with customer number, name, email, city, and organisation number.
Examples:
List all active customers: filter="active"
Search by name: search_name="Acme"
Get specific customer: customer_number="1001"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination | |
| limit | No | Maximum number of results to return (1-100) | |
| filter | No | Filter by customer status | |
| search_name | No | Search customers by name (partial match) | |
| customer_number | No | Filter by specific customer number | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |
| organisation_number | No | Filter by organisation number |