Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node interacts with the Kobana API to update an existing event resource in the V1 Events category. It allows users to modify details of a specific event by providing its unique ID and the updated data in JSON format. This operation is useful for scenarios where event information needs correction or enhancement after creation, such as updating event metadata, status, or other attributes.

Practical examples include:

  • Changing the date or description of an event.
  • Updating event status or related custom fields.
  • Modifying any other event properties supported by the Kobana API.

Properties

Name Meaning
ID The unique identifier of the event resource to update.
Request Body The JSON object containing the fields and values to update on the event resource.
Additional Fields Optional JSON object with extra fields to include in the request (not mandatory here).

Output

The node outputs the JSON response returned by the Kobana API after the update operation. This typically includes the updated event object with all its properties reflecting the changes made.

  • The output is structured as an array of JSON objects, each representing the updated event.
  • No binary data output is involved in this operation.

Dependencies

  • Requires an active Kobana API credential configured in n8n for authentication.
  • The node dynamically selects the API base URL depending on the environment (production or sandbox).
  • The request uses HTTP PUT method to update the event resource at the endpoint /v1/events/{id}.

Troubleshooting

  • Invalid ID: If the provided event ID does not exist, the API will likely return a "resource not found" error. Verify the ID correctness.
  • Malformed JSON: The "Request Body" must be valid JSON. Invalid JSON will cause parsing errors before the request is sent.
  • Authentication errors: Ensure the Kobana API credential is correctly set up and has permissions to update events.
  • API limits or network issues: Temporary failures may occur due to rate limiting or connectivity; retrying might help.
  • If "continue on fail" is enabled, errors will be returned as part of the output JSON with an error field.

Links and References

Discussion