Overview
This node interacts with Kanboard, specifically to retrieve information about boards and columns. For the 'Board' resource with the 'Get' operation, it fetches details of a specific board by its ID. This is useful for users who want to access detailed information about a particular Kanboard board within their workflow, such as retrieving board metadata or status for project management automation.
Use Case Examples
- Retrieve details of a Kanboard board by providing its Board ID to integrate board information into a project management dashboard.
- Use the node to fetch board data and trigger subsequent workflow steps based on board status or properties.
Properties
| Name | Meaning |
|---|---|
| Board ID | The ID of the board to retrieve details for. This is a required input for the 'Get' operation on the 'Board' resource. |
Output
JSON
id- The unique identifier of the board.name- The name of the board.project_id- The ID of the project to which the board belongs.owner_id- The ID of the owner of the board.is_active- Indicates if the board is active.is_public- Indicates if the board is public.token- The token associated with the board for API access.
Dependencies
- Kanboard API with an API key credential
Troubleshooting
- Common issues include providing an invalid or non-existent Board ID, which will cause the API request to fail.
- Network connectivity issues or incorrect API URL configuration can prevent successful communication with the Kanboard API.
- Error messages from the node will include 'Kan Board operation failed' followed by the specific error message from the API, helping to diagnose issues such as authentication failures or resource not found errors.
Links
- Kanboard API Documentation - Official documentation for Kanboard API endpoints and usage.