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 webhooks and other resources. Specifically, for the V1 > Webhooks resource with the Get Many operation, it retrieves multiple webhook records from the Kobana system. This is useful when you want to list all existing webhooks or filter them based on query parameters.
Common scenarios include:
- Fetching all configured webhooks to audit or monitor integrations.
- Retrieving a subset of webhooks filtered by specific criteria (e.g., status, creation date).
- Automating workflows that depend on webhook configurations stored in Kobana.
Example use case:
- An automation that periodically fetches all webhooks to verify their status or update a dashboard.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all webhook results or limit the number of returned items. |
| Limit | Maximum number of webhook results to return if "Return All" is false (1 to 100). |
| Additional Fields | JSON object with additional fields to include in the request (optional extra parameters). |
| Query Parameters | JSON object with query parameters to filter or modify the list request (e.g., filters). |
Output
The node outputs an array of JSON objects representing the webhooks retrieved from the Kobana API. Each object corresponds to a webhook and contains its properties as returned by the API, such as ID, URL, events subscribed to, status, and other metadata.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Kobana API.
- The node automatically 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:
- Authentication errors due to missing or invalid API credentials.
- Request limits exceeded if too many items are requested without pagination.
- Malformed JSON in "Additional Fields" or "Query Parameters" causing request failures.
Error messages:
"Unauthorized"or similar indicates invalid or missing API authentication token; verify credentials."Bad Request"may indicate invalid query parameters or JSON syntax errors; check JSON formatting."Too Many Requests"suggests hitting API rate limits; reduce request frequency or batch size.
Resolutions:
- Ensure valid API credentials are configured in n8n.
- Validate JSON inputs using a JSON validator before running the node.
- Use "Return All" carefully and consider setting reasonable limits to avoid large payloads.
Links and References
- Kobana API Documentation (general reference for API endpoints and parameters)
- n8n documentation on HTTP Request Node for understanding API calls
- JSON validation tools like JSONLint to verify JSON input correctness
