Overview
This node interacts with Kanboard to list all boards associated with a specific project. It is useful for scenarios where you need to retrieve and display all boards within a given project, such as project management dashboards or automation workflows that require board data from Kanboard.
Use Case Examples
- Listing all boards for a project to display in a project management tool.
- Automating the retrieval of board data for reporting or synchronization with other systems.
Properties
| Name | Meaning |
|---|---|
| Project ID | The ID of the project to list boards for, required to specify which project's boards to retrieve. |
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.is_active- Indicates if the board is active.
Dependencies
- Kanboard API, requiring an API URL and an API key credential for authentication.
Troubleshooting
- Ensure the Project ID is correct and exists in Kanboard to avoid empty or error responses.
- Verify that the API URL and credentials are correctly configured to prevent authentication errors.
Common error message: 'Kan Board operation failed: ' indicates an issue with the API request, such as invalid parameters or network issues. Check the error message for specifics and verify API access.
Links
- Kanboard API Documentation - Official documentation for Kanboard API endpoints and usage.