Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to perform various operations on financial commands and related resources. Specifically, for the Financial > Commands resource with the Update operation, it allows updating an existing financial command by specifying its ID and providing a JSON request body with the updated data.

Common scenarios where this node is beneficial include automating updates to financial commands in Kobana, such as modifying payment instructions, adjusting command parameters, or correcting details without manual intervention. For example, a user might update a command's status or change associated metadata programmatically within an n8n workflow.

Properties

Name Meaning
ID The unique identifier of the financial command to update.
Request Body A JSON object representing the fields and values to update in the financial command.
Additional Fields (Optional) A JSON object with extra fields that can be included in the request if needed.

Output

The node outputs the JSON response returned by the Kobana API after performing the update operation. This typically includes the updated financial command object with all its current properties reflecting the changes made.

  • The output is structured as an array of JSON objects, each corresponding to an input item processed.
  • No binary data output is produced by this operation.

Dependencies

  • Requires an active Kobana API credential configured in n8n, which provides authentication tokens necessary to access the Kobana API.
  • The node dynamically selects the API base URL depending on whether the environment is production or sandbox.
  • The node uses HTTP methods (PUT for update) to interact with the Kobana REST API endpoints.

Troubleshooting

  • Invalid ID or Resource Not Found: If the provided ID does not correspond to an existing financial command, the API will likely return a 404 error. Verify the ID is correct.
  • Malformed JSON in Request Body: Ensure the JSON provided in the "Request Body" property is valid and matches the expected schema for the update operation.
  • Authentication Errors: If the API key or credentials are invalid or expired, authentication errors will occur. Check the Kobana API credentials configuration.
  • API Rate Limits or Network Issues: Temporary failures may happen due to rate limiting or connectivity problems. Retrying the operation or checking network status may help.
  • 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


This summary focuses on the Financial > Commands resource with the Update operation as requested, based on static analysis of the provided source code and property definitions.

Discussion