Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node interacts with the Kobana API to update an existing bank billet batch export resource. Specifically, the "Update" operation under the "V1 > Bank Billet Batch Exports" resource allows users to modify details of a bank billet batch export by providing its ID and the updated data in JSON format.

Common scenarios where this node is beneficial include:

  • Adjusting export parameters or metadata for a batch of bank billets after creation.
  • Correcting or adding information to an existing bank billet batch export.
  • Automating updates to batch exports as part of a larger financial workflow.

Practical example:

  • A user has created a bank billet batch export but needs to update some fields such as export settings or descriptions before finalizing it. Using this node, they can specify the batch export ID and provide the new data in JSON to update the resource seamlessly.

Properties

Name Meaning
ID The unique identifier of the bank billet batch export to update (required).
Additional Fields Optional JSON object containing extra fields to include in the request for customization.
Request Body The main JSON payload representing the updated data for the bank billet batch export (required).

Output

The node outputs the JSON response returned by the Kobana API after performing the update operation. This typically includes the updated representation of the bank billet batch export resource, reflecting all changes made.

If the API returns binary data (not typical for update operations), it would represent file contents or export data related to the batch export, but this operation primarily deals with JSON data.

Dependencies

  • Requires an active Kobana API credential configured in n8n with appropriate permissions to update bank billet batch exports.
  • The node dynamically selects the API base URL depending on whether the environment is production or sandbox.
  • No additional external dependencies are required beyond the Kobana API access.

Troubleshooting

  • Invalid ID error: If the provided ID does not correspond to an existing bank billet batch export, the API will return an error. Verify that the ID is correct.
  • Malformed JSON in Request Body: Ensure the JSON provided in the "Request Body" field is valid and correctly formatted; otherwise, the request will fail.
  • Insufficient Permissions: The API key used must have rights to update bank billet batch exports; otherwise, authorization errors will occur.
  • Network or API Endpoint Issues: Confirm network connectivity and that the correct environment (production vs sandbox) is selected in credentials.
  • Continue On Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output.

Links and References

Discussion