bunq icon

bunq

Interact with bunq banking API

Actions42

Overview

This node operation allows you to list bunq.me payment links associated with a specific monetary account in the bunq banking API. It is useful for retrieving and managing payment requests created via bunq.me, which are personalized payment links that can be shared to receive payments easily.

Common scenarios include:

  • Fetching all active or historical bunq.me payment links for reconciliation or reporting.
  • Filtering payment links by status (e.g., waiting for payment, paid, cancelled).
  • Limiting results to a certain number or filtering by creation date or amount range.

Practical example:

  • A business wants to retrieve all bunq.me payment links created in the last month that are still waiting for payment to send reminders to customers.

Properties

Name Meaning
User ID The ID of the user. Leave empty to use the current authenticated user.
Account ID The ID of the monetary account from which to list bunq.me payment links. (Required)
Return All Whether to return all results or only up to a given limit.
Limit Max number of results to return if "Return All" is false. Range: 1-200. Default is 50.
Filters Collection of filters to narrow down the results:
  Status Filter by payment link status. Options: WAITING_FOR_PAYMENT, PAID, CANCELLED, EXPIRED.
  Created After Filter links created after this date/time.
  Created Before Filter links created before this date/time.
  Amount Min Filter by minimum amount value (string format).
  Amount Max Filter by maximum amount value (string format).

Output

The output is an array of JSON objects representing bunq.me payment links matching the query parameters. Each object contains details about a payment link such as its status, creation date, amount, description, and other metadata returned by the bunq API.

No binary data is output by this operation.

Dependencies

  • Requires access to the bunq banking API.
  • Requires valid API credentials configured in n8n for authentication.
  • Uses internal helper functions to make HTTP requests to the bunq API and format responses.

Troubleshooting

  • Empty results: Ensure the correct Account ID is provided and that there are existing bunq.me links for that account.
  • API errors: Check that the API credentials are valid and have sufficient permissions.
  • Invalid filter values: Make sure date filters are valid ISO date strings and amounts are formatted correctly.
  • Limit issues: If too many results are requested without Return All enabled, the API may truncate results.

Links and References

Discussion