Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node interacts with the Kobana API to manage bank billets (bank slips) and other related resources. Specifically, the V1 > Bank Billets - Get Many operation retrieves multiple bank billets from the Kobana system. It supports fetching either all available bank billets or a limited subset based on user-defined parameters.

This operation is useful in scenarios where you need to:

  • Retrieve a list of bank billets for reporting or reconciliation.
  • Fetch recent or filtered bank billets for further processing or automation.
  • Integrate Kobana bank billet data into other systems or workflows.

For example, you might use this node to get all bank billets issued in the last month or to retrieve a limited number of recent bank billets for quick review.

Properties

Name Meaning
Return All Whether to return all bank billets or only up to a specified limit.
Limit The maximum number of bank billets to return when "Return All" is false (1 to 100).
Additional Fields JSON object with additional fields to include in the request (customizes the API call).
Query Parameters JSON object with query parameters to filter or modify the list request (e.g., filters).

Output

The node outputs an array of JSON objects representing bank billets. Each object corresponds to a bank billet with its associated data as returned by the Kobana API.

  • The json output field contains the bank billets data.
  • No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for Kobana API authentication.
  • The node dynamically selects the API base URL depending on the environment (production or sandbox).
  • No additional external dependencies are required.

Troubleshooting

  • Common issues:

    • Invalid or missing API credentials will cause authentication failures.
    • Providing malformed JSON in "Additional Fields" or "Query Parameters" may cause request errors.
    • Requesting more than 100 items when "Return All" is false will be rejected due to API limits.
  • Error messages:

    • Authentication errors typically indicate invalid or missing API keys.
    • JSON parsing errors suggest incorrect formatting in input fields.
    • API rate limits or server errors may occur if too many requests are made in a short time.
  • Resolutions:

    • Verify and configure the correct API key credential.
    • Ensure JSON inputs are valid and properly formatted.
    • Use "Return All" judiciously to avoid large data loads; use "Limit" to control result size.

Links and References

Discussion