Actions215
- V1 > Bank Billets Actions
- V1 > Bank Billet Accounts Actions
- V1 > Bank Billet Batches Actions
- V1 > Bank Billet Batch Exports Actions
- V1 > Bank Billet Discharges Actions
- V1 > Bank Billet Payments Actions
- V1 > Bank Billet Registrations Actions
- V1 > Bank Billet Remittances Actions
- V1 > Customers Actions
- V1 > Customer Subscriptions Actions
- V1 > Discharges Actions
- V1 > Email Deliveries Actions
- V1 > Events Actions
- V1 > Imports Actions
- V1 > Installments Actions
- V1 > Remittances Actions
- V1 > Reports Actions
- V1 > SMS Deliveries Actions
- V1 > User Info Actions
- V1 > Webhook Deliveries Actions
- V1 > Webhooks Actions
- Admin > Users Actions
- Admin > Connections Actions
- Admin > Certificates Actions
- Admin > Subaccounts Actions
- Charge > PIX Actions
- Charge > PIX Accounts Actions
- Data > Bank Billet Queries Actions
- EDI > EDI Boxes Actions
- Financial > Accounts Actions
- Financial > Balances Actions
- Financial > Commands Actions
- Financial > Statement Transactions Actions
- Financial > Transaction Imports Actions
- Financial > Providers Actions
- Payment > Bank Billets Actions
- Payment > Bank Billet Batches Actions
- Payment > Batches Actions
- Payment > DARFs Actions
- Payment > DARF Batches Actions
- Payment > PIX Actions
- Payment > PIX Batches Actions
- Payment > Utilities Actions
- Payment > Utility Batches Actions
- Transfer > Batches Actions
- Transfer > Internal Actions
- Transfer > Internal Batches Actions
- Transfer > PIX Actions
- Transfer > PIX Batches Actions
- Transfer > TED Actions
- Transfer > TED Batches Actions
Overview
This node enables interaction with the Kobana API specifically for exporting bank billet batches (bank slip batch exports) using the V1 API version. The "Create" operation allows users to initiate an export of a bank billet batch, which is useful for generating files or data exports related to groups of bank slips managed in Kobana.
Typical use cases include:
- Automating the export of bank billet batch data for accounting or reconciliation.
- Integrating batch export functionality into workflows that require periodic or triggered export of payment batches.
- Generating export files for downstream processing or archival.
For example, a user might create a workflow that triggers when a batch of bank billets is finalized and then uses this node to export the batch data automatically to a specified format or location.
Properties
| Name | Meaning |
|---|---|
Request Body (body) |
The JSON object representing the request body required to create the bank billet batch export. This contains the details of the export request. It is mandatory. |
Additional Fields (additionalFields.fields) |
Optional JSON object with additional fields for the request, allowing customization or extension of the export request parameters. |
Output
The node outputs the JSON response returned by the Kobana API after creating the bank billet batch export. This typically includes information about the export job such as its ID, status, creation timestamp, and any relevant metadata returned by the API.
If the API supports binary data output for exports (e.g., ZIP or PDF files), this node would handle it accordingly, but based on the provided code and properties, the output is JSON structured data describing the export operation result.
Dependencies
- Requires an active Kobana API credential configured in n8n with appropriate permissions to access bank billet batch exports.
- The node dynamically selects the API base URL depending on the environment (production or sandbox).
- No other external dependencies are indicated.
Troubleshooting
- Invalid JSON in Request Body or Additional Fields: Since the
bodyandadditionalFields.fieldsinputs expect JSON strings, malformed JSON will cause parsing errors. Ensure valid JSON syntax. - Authentication Errors: If the API key or credentials are missing or invalid, the node will fail to authenticate. Verify the Kobana API credential setup.
- API Endpoint Errors: Incorrect resource or operation selection may lead to 404 or method not allowed errors. Confirm that the resource is set to "V1 > Bank Billet Batch Exports" and operation to "Create".
- Missing Required Fields: The
bodyproperty is required; omitting it will cause the request to fail. - Network Issues: Connectivity problems to the Kobana API endpoints can cause timeouts or connection errors.
Links and References
- Kobana API Documentation (general reference, actual link may vary)
- n8n documentation on Creating Custom Nodes
- JSON validation tools for verifying request body syntax (e.g., https://jsonlint.com/)
