Overview
This node interacts with Kanboard users, allowing retrieval of user information. It supports two operations: fetching details of a specific user by their User ID, and listing all users. This is useful for workflows that need to access or manage user data within Kanboard, such as automating user audits or integrating user info into other systems.
Use Case Examples
- Retrieve details of a specific Kanboard user by providing their User ID.
- List all users in Kanboard to generate reports or synchronize user data with another system.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the user to retrieve, required for the 'Get' operation. |
Output
JSON
id- The unique identifier of the user.username- The username of the user.name- The full name of the user.email- The email address of the user.isActive- Indicates if the user is active.role- The role assigned to the user.
Dependencies
- Kanboard API with an API key credential
Troubleshooting
- Ensure the Kanboard API URL and credentials are correctly configured; incorrect URLs or missing/invalid API keys will cause authentication errors.
- If the 'User ID' is missing or incorrect for the 'Get' operation, the node will fail to retrieve user data.
- Network issues or API downtime can cause request failures; verify connectivity and API status.
Links
- Kanboard API Documentation - Official documentation for Kanboard API endpoints and usage.