Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node allows you to interact with the Kobana API, specifically managing webhook deliveries under the "V1 > Webhook Deliveries" resource. The "Create" operation enables you to create a new webhook delivery by sending a JSON request body to the Kobana API.

Typical use cases include automating webhook delivery creation as part of an integration workflow, such as triggering notifications or forwarding event data to external systems when certain events occur in Kobana.

For example, you might use this node to programmatically create webhook deliveries that notify your system whenever a payment status changes or a customer subscription is updated.

Properties

Name Meaning
Request Body The JSON object representing the request body to send when creating the webhook delivery. This must be provided and should contain all necessary fields as per the Kobana API specification for webhook deliveries.
Additional Fields A JSON object containing any additional optional fields for the request. This allows extending the request with extra parameters supported by the API.

Output

The node outputs the JSON response returned by the Kobana API after creating the webhook delivery. The output is structured as an array of JSON objects, each corresponding to an input item processed.

  • The json field contains the full response from the API, typically including details about the created webhook delivery such as its ID, status, timestamps, and other metadata.
  • There is no binary data output for this operation.

Dependencies

  • Requires an active Kobana API credential configured in n8n, which provides authentication to access the Kobana API.
  • The node dynamically selects the API base URL depending on whether the environment is production or sandbox.
  • No other external dependencies are required.

Troubleshooting

  • Invalid JSON in Request Body: If the JSON provided in the "Request Body" or "Additional Fields" 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 with an authentication error. Verify that the Kobana API credential is correctly set up.
  • API Validation Errors: The Kobana API may return errors if required fields are missing or invalid in the request body. Review the API documentation to ensure all mandatory fields are included.
  • Network Issues: Connectivity problems can cause request failures. Check network access and firewall settings.
  • Continue On Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.

Links and References

Discussion