Actions42
- Attachment Actions
- Payment Actions
- Transaction Actions
- Request Inquiry Actions
- Card Actions
- bunq.me Actions
- Webhook Actions
- Scheduled Payment Actions
- Export/Statement Actions
- User Actions
- Monetary Account Actions
Overview
This node interacts with the bunq banking API to perform operations related to monetary accounts. Specifically, the List operation under the Monetary Account resource retrieves a list of monetary accounts associated with a user.
Typical use cases include:
- Fetching all monetary accounts for the current or specified user.
- Retrieving a limited number of monetary accounts for display or processing.
- Integrating bunq account data into workflows for financial reporting, monitoring, or automation.
For example, you might use this node to get all your monetary accounts and then process their balances or transactions in subsequent workflow steps.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the user whose monetary accounts you want to list. Leave empty to use current user. |
| Return All | Whether to return all monetary accounts or only up to a given limit. |
| Limit | Maximum number of monetary accounts to return if "Return All" is false. Range: 1 to 200. |
Output
The output is a JSON array where each item represents a monetary account object as returned by the bunq API. Each object contains detailed information about a monetary account, such as its identifier, balance, status, and other metadata.
The structure corresponds directly to the bunq API's monetary account response format, but it is normalized/formatted by the node's internal helper function for easier consumption.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the bunq API via configured credentials (an API key or OAuth2 token).
- The node uses internal helper functions to make authenticated HTTP requests to the bunq API endpoints.
- No additional external services are required beyond the bunq API itself.
Troubleshooting
- Empty or no results: Ensure the correct User ID is provided or leave it empty to use the current authenticated user. Also verify that the user has monetary accounts.
- API authentication errors: Check that the API credentials are valid and have sufficient permissions.
- Limit parameter issues: The limit must be between 1 and 200; values outside this range may cause errors.
- Network or connectivity problems: Verify network access to the bunq API endpoint.
- Unexpected response format: If the bunq API changes, the node's formatting helper might fail; updating the node or checking API version compatibility may help.
Links and References
- bunq API Documentation - Monetary Accounts
- bunq Developer Portal
- n8n Documentation (for general usage of the bunq node)