Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to manage transfer batches, specifically allowing users to retrieve detailed information about a particular transfer batch by its ID. It is useful in financial workflows where batch transfers need to be tracked or audited. For example, a user might want to fetch the status and details of a specific batch of bank transfers to verify completion or reconcile accounts.

Properties

Name Meaning
ID The unique identifier of the transfer batch to retrieve. This is a required string input.

Output

  • The output is a JSON object representing the transfer batch details as returned by the Kobana API.
  • The structure typically includes fields such as batch metadata, status, creation date, list of transfers within the batch, and other relevant batch-specific information.
  • No binary data output is produced by this operation.

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

  • Common issues:

    • Providing an invalid or non-existent batch ID will likely result in an error from the API indicating that the resource was not found.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "Resource not found" or similar indicates the provided ID does not correspond to any existing transfer batch.
    • Authentication errors suggest checking the API key credential configuration.
    • JSON parsing errors may occur if the input parameters are malformed; ensure the ID is a valid string.
  • Resolutions:

    • Verify the batch ID is correct and exists in the Kobana system.
    • Confirm that the API key credential is properly set up and has necessary permissions.
    • Check network connectivity and retry the operation.

Links and References

Discussion