Actions7
- Accounts Actions
- Transactions Actions
- Categories Actions
Overview
The "Get All Categories" operation in the Kontoflux.io node retrieves a list of all categories available in the user's bank account data. This is useful for scenarios where you want to analyze, filter, or display categorized financial transactions. For example, you might use this operation to populate a dropdown menu with category options in a budgeting app or to generate reports grouped by spending categories.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all category results or only up to a specified limit. |
| Limit | The maximum number of categories to return when not returning all (minimum 1, max 250). |
| Offset | The pagination offset to start returning categories from (used when not returning all). |
Output
The output contains a JSON array of category objects representing each category retrieved from the API. Each object typically includes details such as the category's unique identifier, name, and possibly other metadata related to the category.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for Kontoflux.io with access to the workspace.
- The base URL for API requests is dynamically constructed using the workspace ID from credentials.
- The node sends HTTP requests to the Kontoflux.io API endpoint
https://api.kontoflux.io/v1/.
Troubleshooting
- Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Exceeding the maximum allowed limit (250) will likely result in an error.
- Incorrect workspace ID or malformed base URL can lead to connection errors.
- Error messages:
- Authentication errors usually indicate invalid or expired API keys; recheck and update credentials.
- Pagination errors may occur if offset or limit values are out of range; ensure they respect the defined constraints.
- Network or API endpoint errors suggest connectivity issues or incorrect configuration.
Links and References
- Kontoflux.io API Documentation (for detailed API usage and category data structure)
- n8n Documentation on Creating Custom Nodes