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 for managing admin users under the "Admin > Users" resource. The "Create" operation enables you to create a new admin user by sending a JSON request body with the necessary user details.

Common scenarios where this node is beneficial include automating the onboarding process of new admin users in your Kobana environment, integrating user management into workflows, or synchronizing user data from other systems.

For example, you can use this node to programmatically add new administrators when a new employee joins your company, ensuring they have immediate access without manual intervention.

Properties

Name Meaning
Request Body The JSON object containing the details of the admin user to be created. This is required.
Additional Fields Optional JSON object with extra fields to include in the request (not typically used here).

The "Request Body" property must contain all necessary information about the new admin user formatted as JSON. The "Additional Fields" property allows adding any extra parameters if needed, also as a JSON object.

Output

The output of this node is a JSON object representing the response from the Kobana API after creating the admin user. It typically includes details of the newly created user such as their ID, name, email, roles, and other relevant metadata returned by the API.

No binary data output is produced by this node.

Dependencies

  • Requires an active Kobana API credential configured in n8n with appropriate permissions to create admin users.
  • The node dynamically selects the API base URL depending on whether the environment is production or sandbox.
  • Network access to the Kobana API endpoints is necessary.

Troubleshooting

  • Invalid JSON in Request Body: If the JSON provided in the "Request Body" field is malformed, the node will throw a parsing error. Ensure the JSON syntax is correct.
  • Authentication Errors: If the API credentials are missing, invalid, or lack sufficient permissions, the node will fail with authentication errors. Verify that the API key or token is correctly set up and has rights to create admin users.
  • API Endpoint Errors: Errors from the Kobana API such as validation failures or missing required fields will be returned in the node output. Review the error messages and adjust the request body accordingly.
  • Network Issues: Connectivity problems to the Kobana API will cause request failures. Check network settings and firewall rules.

Links and References


If you need help constructing the JSON request body or understanding specific fields required by the Kobana API for creating admin users, please refer to the official Kobana API docs or provide the expected schema for further assistance.

Discussion