Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to manage remittances and other financial resources. Specifically, for the V1 > Remittances resource with the Create operation, it allows users to create new remittance records by sending a JSON request body to the Kobana API.

Typical use cases include automating the creation of remittance files or records in financial workflows, such as batch processing payments or bank slips, integrating with accounting systems, or managing payment instructions programmatically.

For example, a user might use this node to create a remittance file that contains multiple bank slip payment instructions to be sent to a bank or payment processor.

Properties

Name Meaning
Request Body The JSON object representing the remittance data to be created. This is required.
Additional Fields Optional JSON object with extra fields to include in the request (not mandatory here).

The Request Body property must contain all necessary details for the remittance creation according to the Kobana API specification.

Output

  • The node outputs the JSON response returned by the Kobana API after creating the remittance.
  • The output is an array of JSON objects corresponding to each input item processed.
  • No binary data output is indicated for this operation.

The JSON output typically includes details about the newly created remittance, such as its ID, status, timestamps, and any other metadata provided by the API.

Dependencies

  • Requires an active Kobana API credential configured in n8n with appropriate permissions.
  • The node dynamically selects the API base URL depending on the environment (production or sandbox).
  • Network connectivity to the Kobana API endpoints is necessary.

Troubleshooting

  • Invalid JSON in Request Body: If the JSON provided in the "Request Body" field is malformed, the node will throw a parsing error. Ensure the JSON syntax is correct.
  • Authentication Errors: If the API key or credentials are invalid or missing, the node will fail authentication. Verify the Kobana API credentials in n8n.
  • API Endpoint Errors: If the remittance creation fails due to invalid data or server issues, the API will return an error message which the node passes through. Check the error message for details.
  • Rate Limits or Quotas: Excessive requests may be throttled by the API. Implement retry logic or reduce request frequency if needed.
  • Missing Required Fields: The API may require specific fields in the request body; ensure all mandatory fields are included.

Links and References


Note: This summary focuses solely on the V1 > Remittances resource and Create operation as requested.

Discussion