Kobana icon

Kobana

Interact with Kobana API - Quick access to common operations

Actions215

Overview

This node integrates with the Kobana API to manage administrative users and other resources. Specifically, for the Admin > Users resource with the Get Many operation, it retrieves multiple admin user records from the Kobana system. This is useful in scenarios where you need to list or audit all admin users, synchronize user data, or perform bulk operations based on user information.

Practical examples include:

  • Fetching all admin users to display in a dashboard.
  • Retrieving a limited set of users for reporting or monitoring purposes.
  • Applying query filters to find users matching specific criteria.

Properties

Name Meaning
Return All Whether to return all results or only up to a given limit.
Limit Maximum number of results to return (used if "Return All" is false).
Additional Fields JSON object with additional fields for the request (optional extra parameters).
Query Parameters JSON object with query parameters to filter or modify the request (e.g., search criteria).

Output

The output is a JSON array where each element represents an admin user object retrieved from the Kobana API. Each object contains the user details as provided by the API response.

If the node is configured to return all results, the output includes all matching users; otherwise, it returns up to the specified limit.

No binary data output is produced by this operation.

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:

    • Authentication errors due to missing or invalid API credentials.
    • Exceeding API rate limits when requesting large datasets without pagination.
    • Malformed JSON in "Additional Fields" or "Query Parameters" causing request failures.
  • Error messages:

    • Errors returned from the Kobana API will be included in the output if "Continue On Fail" is enabled.
    • Typical error messages may relate to invalid parameters, unauthorized access, or resource not found.
  • Resolutions:

    • Verify that the API key credential is correctly configured and has necessary permissions.
    • Use the "Limit" property to restrict the number of results and avoid timeouts.
    • Ensure JSON inputs for additional fields and query parameters are valid and properly formatted.

Links and References

Discussion