Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node enables interaction with the Kobana API specifically for exporting bank billet batches (bank slip batch exports) using the V1 API version. The "Create" operation allows users to initiate an export of a bank billet batch, which is useful for generating files or data exports related to groups of bank slips managed in Kobana.

Typical use cases include:

  • Automating the export of bank billet batch data for accounting or reconciliation.
  • Integrating batch export functionality into workflows that require periodic or triggered export of payment batches.
  • Generating export files for downstream processing or archival.

For example, a user might create a workflow that triggers when a batch of bank billets is finalized and then uses this node to export the batch data automatically to a specified format or location.

Properties

Name Meaning
Request Body (body) The JSON object representing the request body required to create the bank billet batch export. This contains the details of the export request. It is mandatory.
Additional Fields (additionalFields.fields) Optional JSON object with additional fields for the request, allowing customization or extension of the export request parameters.

Output

The node outputs the JSON response returned by the Kobana API after creating the bank billet batch export. This typically includes information about the export job such as its ID, status, creation timestamp, and any relevant metadata returned by the API.

If the API supports binary data output for exports (e.g., ZIP or PDF files), this node would handle it accordingly, but based on the provided code and properties, the output is JSON structured data describing the export operation result.

Dependencies

  • Requires an active Kobana API credential configured in n8n with appropriate permissions to access bank billet batch exports.
  • The node dynamically selects the API base URL depending on the environment (production or sandbox).
  • No other external dependencies are indicated.

Troubleshooting

  • Invalid JSON in Request Body or Additional Fields: Since the body and additionalFields.fields inputs expect JSON strings, malformed JSON will cause parsing errors. Ensure valid JSON syntax.
  • Authentication Errors: If the API key or credentials are missing or invalid, the node will fail to authenticate. Verify the Kobana API credential setup.
  • API Endpoint Errors: Incorrect resource or operation selection may lead to 404 or method not allowed errors. Confirm that the resource is set to "V1 > Bank Billet Batch Exports" and operation to "Create".
  • Missing Required Fields: The body property is required; omitting it will cause the request to fail.
  • Network Issues: Connectivity problems to the Kobana API endpoints can cause timeouts or connection errors.

Links and References

Discussion