Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to manage payment bank billets (bank slips). Specifically, the Update operation for the Payment > Bank Billets resource allows users to modify existing bank billet records by sending updated data to the API. This is useful in scenarios where details of a bank slip need correction or adjustment after creation, such as changing due dates, amounts, or payer information.

Practical examples include:

  • Updating the amount or due date of an issued bank slip.
  • Correcting customer information linked to a bank slip.
  • Adjusting payment instructions or other metadata associated with the bank slip.

Properties

Name Meaning
ID The unique identifier of the bank billet to update.
Request Body JSON object containing the fields and values to update on the bank billet.
Additional Fields Optional JSON object with extra fields for the request (not typically required for update).

Output

The node outputs the JSON response returned by the Kobana API after updating the bank billet. This JSON typically contains the updated bank billet data reflecting the changes made.

  • The output is structured as an array of JSON objects, each representing the updated bank billet.
  • No binary data output is involved in 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).
  • Proper configuration of the Kobana API credentials in n8n is necessary.

Troubleshooting

  • Invalid ID error: If the provided bank billet ID does not exist or is malformed, the API will return an error. Verify the ID before running the node.
  • Malformed JSON in Request Body: The "Request Body" must be valid JSON. Invalid JSON syntax will cause parsing errors. Use a JSON validator if needed.
  • Authentication errors: Ensure that the API key credential is correctly set up and has permissions to update bank billets.
  • API rate limits or downtime: Temporary failures may occur if the Kobana API is unavailable or rate-limited. Retry later or check API status.

Links and References

Discussion