Qonto icon

Qonto

Interact with Qonto API

Actions45

Overview

The node provides integration with the Qonto API, allowing users to interact with various financial resources managed by Qonto. Specifically, for the SEPA Transfer resource and the Get Bulk Transfers operation, the node retrieves multiple SEPA bulk transfer records from a Qonto account.

This node is beneficial in scenarios where users need to automate the retrieval of bulk SEPA transfer data for reconciliation, reporting, or further processing within workflows. For example, a finance team could use this node to fetch all bulk transfers made during a period and then generate reports or trigger notifications based on the transfer status.

Properties

Name Meaning
Authentication Method used to authenticate requests. Options: "API Key"
Return All Whether to return all available results or limit the number of returned bulk transfers.

Output

The node outputs an array of JSON objects representing SEPA bulk transfer records retrieved from the Qonto API. Each object contains details about individual bulk transfers such as identifiers, amounts, statuses, dates, and other relevant metadata provided by Qonto.

If binary data were involved (e.g., documents or attachments), it would be included in a separate binary property, but for this operation, the output focuses on JSON data describing bulk transfers.

Dependencies

  • Requires access to the Qonto API.
  • Requires an API key credential configured in n8n for authentication.
  • The node uses the base URL depending on the environment (sandbox or production) set in credentials.
  • Network connectivity to Qonto's API endpoints.

Troubleshooting

  • Common Issues:
    • Invalid or missing API key will cause authentication failures.
    • Network timeouts or connectivity issues may prevent data retrieval.
    • Requesting too many records without enabling "Return All" might result in partial data.
  • Error Messages:
    • "Unknown resource: sepaTransfer" indicates a misconfiguration or typo in the resource parameter.
    • API errors from Qonto (e.g., rate limits, invalid parameters) will be surfaced as error messages.
  • Resolutions:
    • Verify that the API key is correctly set and has necessary permissions.
    • Enable "Return All" if you want to retrieve all bulk transfers instead of a limited subset.
    • Check network connectivity and Qonto service status.

Links and References

Discussion