Qonto icon

Qonto

Interact with Qonto API

Actions45

Overview

The node interacts with the Qonto API to retrieve multiple quote records based on user-defined filters and pagination settings. It is designed to fetch a list of quotes, which can be useful for financial management, accounting workflows, or integration scenarios where users need to process or analyze multiple quote entries from their Qonto account.

Typical use cases include:

  • Retrieving all quotes within a specific date range.
  • Filtering quotes by their status (e.g., approved, pending approval).
  • Paginating through large sets of quotes to process them in batches.

For example, a user might want to get all approved quotes created last month to generate reports or trigger follow-up actions.

Properties

Name Meaning
Authentication Method of authenticating with the Qonto API. Only "API Key" is supported here.
Return All Whether to return all matching quotes or limit the number of results returned.
Limit Maximum number of quotes to return when "Return All" is false. Range: 1 to 100.
Page The page number to retrieve when limiting results. Starts at 1.
Filters Collection of filters to narrow down the quotes retrieved:
- Status Filter quotes by their status. Options: Pending Approval, Approved, Canceled.
- Created From Minimum creation date to filter quotes from (inclusive).
- Created To Maximum creation date to filter quotes up to (inclusive).

Output

The node outputs an array of JSON objects representing the quotes retrieved from the Qonto API. Each object corresponds to a single quote record and contains fields as defined by the Qonto API's quote resource schema (not detailed in the provided code).

If the node supports binary data output (not indicated in the provided snippet), it would typically represent attachments or documents related to quotes, but this is not evident here.

Dependencies

  • Requires an API key credential for authenticating requests to the Qonto API.
  • The node uses the Qonto API base URL, switching between sandbox and production environments based on credentials configuration.
  • No additional external dependencies are indicated beyond the Qonto API itself.

Troubleshooting

  • Common issues:
    • Invalid or missing API key will cause authentication failures.
    • Requesting pages beyond available data may return empty results.
    • Using date filters incorrectly (e.g., invalid date formats) may cause errors or no results.
  • Error messages:
    • "Unknown resource: quote" if the resource parameter is misconfigured.
    • API errors returned from Qonto (e.g., rate limits, invalid parameters) will be surfaced as error messages.
  • Resolutions:
    • Ensure the API key credential is correctly configured and valid.
    • Verify that date filters use proper ISO date-time format.
    • Use pagination parameters within allowed ranges.

Links and References

Discussion