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 interacts with the Kobana API to manage TED transfer batches. Specifically, the "Get Many" operation under the "Transfer > TED Batches" resource allows users to retrieve a list of TED transfer batches from their Kobana account.
This operation is useful when you want to:
- Retrieve multiple TED transfer batch records for reporting or auditing.
- Filter and paginate through TED batches based on query parameters.
- Automate workflows that require processing or analyzing multiple TED batches at once.
For example, a finance team could use this node to fetch all TED batches created in the last month to reconcile payments or generate reports.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all results or only up to a given limit. |
| Limit | Max number of results to return (1 to 100). Only used if "Return All" is false. |
| Additional Fields | JSON object with additional fields for the request (optional). |
| Query Parameters | JSON object with query parameters to filter or modify the request (optional). |
Details:
- Return All: If true, the node will fetch all available TED batches without limiting the number of results.
- Limit: When "Return All" is false, limits the number of TED batches returned to this number.
- Additional Fields: Allows specifying extra fields in JSON format to customize the request.
- Query Parameters: Allows passing arbitrary query parameters as a JSON object to filter or control the API response (e.g., date ranges, status filters).
Output
The output is an array of JSON objects representing TED transfer batches retrieved from the Kobana API.
Each item in the output corresponds to one TED batch and contains all the data fields returned by the API for that batch, such as batch ID, creation date, status, total amount, and other metadata.
No binary data is output by this operation.
Dependencies
- Requires an active Kobana API credential configured in n8n with appropriate permissions.
- The node dynamically selects the API base URL depending on whether the environment is production or sandbox.
- No other external dependencies are required.
Troubleshooting
Common Issues:
- Incorrect or missing API credentials will cause authentication failures.
- Providing invalid JSON in "Additional Fields" or "Query Parameters" may cause request errors.
- Exceeding API rate limits can result in temporary blocking or errors.
- Using unsupported query parameters may lead to unexpected results or errors.
Error Messages:
- Authentication errors typically indicate invalid or expired API keys; verify and update credentials.
- JSON parsing errors suggest malformed JSON input; ensure valid JSON syntax.
- HTTP errors from the API (4xx or 5xx) should be checked against Kobana API documentation for specific causes.
Links and References
- Kobana API Documentation (general reference for API endpoints and parameters)
- n8n Documentation on Using Credentials
- n8n Documentation on HTTP Request Node (for understanding API calls)
Note: This summary is based solely on static analysis of the provided source code and property definitions. Runtime behavior and dynamic responses depend on the actual Kobana API and user inputs.
