Kontoflux.io icon

Kontoflux.io

Access your Bank Accounts and Transactions with Kontoflux.io

Overview

The "Get All Accounts" operation in the Kontoflux.io node retrieves a list of bank accounts accessible via the Kontoflux.io API. This operation is useful for scenarios where you need to fetch multiple account details, such as displaying all user accounts in a dashboard, synchronizing account data with another system, or performing batch processing on accounts.

Practical examples include:

  • Fetching all accounts linked to a user's workspace to show balances and metadata.
  • Applying filters like BIC or BLZ codes to narrow down the returned accounts.
  • Paginating through large sets of accounts by specifying limits and offsets.

Properties

Name Meaning
Return All Whether to return all results or only up to a given limit. (Boolean: true/false)
Limit Max number of accounts to return when not returning all. Range: 1 to 100
Offset Offset for pagination, used to skip a number of accounts before starting to return results
Filter Collection of optional filters to apply:
- BIC Filter accounts by Bank Identifier Code (string)
- BLZ Filter accounts by Bankleitzahl (German bank code) (string)

Output

The output contains a JSON array of account objects retrieved from the Kontoflux.io API. Each object represents an individual bank account with its associated details (such as account number, bank codes, balance, etc.). The exact structure depends on the API response but typically includes identifiers and metadata for each account.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active API key credential for Kontoflux.io with access to the specified workspace.
  • The base URL for API requests is dynamically constructed using the workspace ID from credentials.
  • The node sends HTTP requests with JSON content type and expects JSON responses.

Troubleshooting

  • Empty results: If no accounts are returned, verify that the workspace ID and API credentials are correct and that the user has accounts available.
  • Pagination issues: When Return All is false, ensure Limit and Offset values are set correctly to paginate through results.
  • Filter misconfiguration: Incorrect BIC or BLZ filter values may result in no matching accounts; double-check filter inputs.
  • Authentication errors: Ensure the API key credential is valid and has necessary permissions.
  • API connectivity: Network issues or incorrect base URL formation can cause request failures.

Links and References

Discussion