Qonto icon

Qonto

Interact with Qonto API

Actions45

Overview

The node provides integration with the Qonto API, enabling users to interact with various financial resources managed by Qonto. Specifically, for the SEPA Transfer resource and the Get Single SEPA Beneficiary operation, the node retrieves detailed information about a single SEPA beneficiary by its unique identifier. This is useful in scenarios where you need to fetch beneficiary details for payment processing, auditing, or record-keeping.

Practical examples include:

  • Retrieving beneficiary details before initiating a SEPA transfer.
  • Verifying beneficiary information during reconciliation processes.
  • Automating workflows that require beneficiary data validation.

Properties

Name Meaning
Authentication Method of authenticating with the Qonto API. Currently supports: API Key.
ID The unique identifier of the SEPA beneficiary to retrieve. This is a required string.

Output

The node outputs JSON data representing the details of the requested SEPA beneficiary. The structure typically includes fields such as beneficiary name, IBAN, BIC, address, and other relevant banking information associated with the SEPA beneficiary.

If the node encounters an error (e.g., invalid ID), it returns a JSON object containing an error field with the error message.

The node does not output binary data.

Dependencies

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

Troubleshooting

  • Common issues:

    • Invalid or missing beneficiary ID will cause the node to fail.
    • Incorrect or expired API key will result in authentication errors.
    • Network issues or incorrect environment configuration may prevent successful API calls.
  • Error messages:

    • "Unknown resource: sepaTransfer": Indicates the resource name was not recognized; ensure the resource parameter is correctly set.
    • Errors returned from the Qonto API are passed through in the error field if "Continue On Fail" is enabled.
  • Resolutions:

    • Verify the beneficiary ID is correct and exists in your Qonto account.
    • Confirm the API key is valid and has necessary permissions.
    • Check network connectivity and environment settings (sandbox vs production).

Links and References

Discussion