Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node provides integration with the Kobana API, enabling users to perform various operations on financial and transfer-related resources. Specifically, for the Transfer > TED resource with the Get operation, the node retrieves detailed information about a specific TED (Electronic Transfer Document) transfer by its unique ID.

Typical use cases include:

  • Fetching details of a particular TED transfer to verify its status or data.
  • Automating workflows that require confirmation or processing of TED transfers.
  • Integrating TED transfer data into reporting or accounting systems.

Example: A user can input the ID of a TED transfer and retrieve all associated information such as amount, sender, receiver, date, and status.

Properties

Name Meaning
ID The unique identifier of the TED transfer resource to retrieve. This is a required string property.

Output

The node outputs a JSON object representing the TED transfer resource corresponding to the provided ID. The structure includes all relevant fields returned by the Kobana API for a TED transfer, such as transfer details, amounts, dates, and statuses.

If the node supports binary data output for other operations or resources, it would typically represent files or documents related to transfers, but for the Get operation on TED transfers, the output is purely JSON.

Dependencies

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

Troubleshooting

  • Invalid or missing ID: If the ID parameter is empty or incorrect, the API will likely return an error indicating the resource was not found. Ensure the ID is correct and corresponds to an existing TED transfer.
  • Authentication errors: If the API key credential is invalid or missing, requests will fail with authentication errors. Verify that the API key is correctly configured in n8n credentials.
  • Network or API availability issues: Temporary network problems or Kobana API downtime may cause request failures. Retry after some time or check the API status.
  • JSON parsing errors: When providing additional JSON parameters (not applicable here for Get), ensure valid JSON syntax to avoid errors.

Links and References

Discussion