Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node interacts with the Kobana API to manage billing wallets (referred to as "Bank Billet Accounts") within the V1 API version. Specifically, the Set Default operation sets a specified billing wallet as the default one for the user or account.

Typical use cases include:

  • Automating the selection of a default billing wallet in financial workflows.
  • Managing multiple billing wallets and programmatically switching the default wallet based on business logic.
  • Integrating Kobana billing wallet management into broader automation pipelines.

For example, after creating several billing wallets, you can use this node to set one as the default so that subsequent operations use it automatically.

Properties

Name Meaning
ID The unique identifier of the billing wallet (bank billet account) to be set as default. This is required.

Output

The node outputs the JSON response returned by the Kobana API after setting the billing wallet as default. This typically includes details about the updated billing wallet resource, confirming the change.

The output is structured as an array of JSON objects, each corresponding to an input item processed. Each object contains the API response data under the json field.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Kobana API via an API key credential configured in n8n.
  • 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:

    • Invalid or missing billing wallet ID will cause the API request to fail.
    • Incorrect or expired API credentials will result in authentication errors.
    • Network connectivity problems may prevent reaching the Kobana API endpoint.
  • Error messages:

    • "Resource not found": The provided ID does not correspond to any existing billing wallet.
    • "Unauthorized" or "Authentication failed": Check that the API key credential is correctly configured and valid.
    • "Bad Request": Verify that the ID parameter is correctly formatted and supplied.
  • Resolution tips:

    • Ensure the ID property is set and corresponds to an existing billing wallet.
    • Confirm API credentials are correct and have necessary permissions.
    • Test connectivity to the Kobana API outside n8n to rule out network issues.

Links and References

Discussion