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 integrates with the Kobana API to manage and retrieve event data (and other resources). Specifically, for the V1 > Events resource with the Get Many operation, it fetches multiple event records from the Kobana system. This is useful when you want to list or analyze many events at once, such as monitoring system activities, auditing changes, or aggregating event logs.
Practical examples include:
- Retrieving all events within a certain date range for audit purposes.
- Fetching a limited number of recent events to display in a dashboard.
- Filtering events by specific query parameters to find relevant occurrences.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all matching event results or only up to a specified limit. |
| Limit | The maximum number of event results to return if not returning all (minimum 1, maximum 100). |
| Additional Fields | JSON object containing additional fields to customize the request further. |
| Query Parameters | JSON object with query parameters to filter or modify the event retrieval request. |
Output
The node outputs an array of JSON objects representing the events retrieved from the Kobana API. Each object corresponds to an individual event record with its associated properties as returned by the API.
If binary data were involved (not indicated here), it would be included in the output's binary property, but this operation deals solely with JSON event data.
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).
- No additional external dependencies are required beyond the Kobana API access.
Troubleshooting
Common Issues:
- Incorrect or missing API credentials will cause authentication failures.
- Providing invalid JSON in "Additional Fields" or "Query Parameters" may result in request errors.
- Exceeding the allowed limit (max 100) will likely cause validation errors.
- Network connectivity issues can prevent successful API calls.
Error Messages:
- Authentication errors typically indicate invalid or missing API keys; verify and update credentials.
- JSON parsing errors suggest malformed JSON input in fields like "Additional Fields" or "Query Parameters"; ensure valid JSON syntax.
- Rate limiting or quota exceeded errors require checking API usage limits and possibly adjusting request frequency or limits.
- Resource not found errors may occur if filtering parameters do not match any events.
Links and References
- Kobana API Documentation (official API docs for detailed endpoint info)
- n8n documentation on HTTP Request Node for understanding underlying request mechanics
- JSON validation tools (e.g., https://jsonlint.com/) to verify JSON inputs before use
