Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to manage TED (Electronic Transfer Document) transfers within the "Transfer > TED" resource. Specifically, the "Create" operation allows users to initiate a new TED transfer by sending a structured JSON request body to the Kobana API.

Typical use cases include automating bank transfer workflows where TED transfers are required, such as payroll disbursements, vendor payments, or any scenario requiring electronic funds transfer in Brazil. For example, a finance team could use this node to programmatically create TED transfers based on invoice data stored in their system.

Properties

Name Meaning
Request Body The JSON object representing the details of the TED transfer to be created. This must include all required fields for the TED transfer according to the Kobana API specification.
Additional Fields A JSON object containing any extra optional fields to include in the request. This allows customization beyond the standard request body.

Output

The node outputs the JSON response returned by the Kobana API after creating the TED transfer. This typically includes details about the newly created transfer such as its ID, status, timestamps, and any other metadata provided by the API.

If the API supports binary data in responses (not indicated here), it would be summarized accordingly, but in this case, the output is purely JSON.

Dependencies

  • Requires an active Kobana API credential configured in n8n, which provides authentication tokens and environment selection.
  • 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 JSON in Request Body: If the JSON provided in the "Request Body" or "Additional Fields" is malformed, the node will throw a parsing error. Ensure that the JSON syntax is correct.
  • Authentication Errors: If the Kobana API credentials are missing, invalid, or expired, the node will fail to authenticate. Verify that the API key or token is correctly set up in n8n credentials.
  • API Validation Errors: The Kobana API may reject requests if required fields are missing or contain invalid values. Review the API documentation to ensure the request body meets all requirements.
  • Network Issues: Connectivity problems or incorrect environment settings (production vs sandbox) can cause request failures. Confirm network access and environment configuration.
  • Continue On Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.

Links and References


Note: The above summary is based solely on static analysis of the provided source code and property definitions.

Discussion