Overview
This node interacts with Kanboard projects, allowing users to either retrieve details of a specific project by its ID or list all projects available in Kanboard. It is useful for workflows that need to manage or display project information from Kanboard, such as project tracking, reporting, or integration with other tools.
Use Case Examples
- List all projects in Kanboard to display in a dashboard.
- Get details of a specific project by providing its project ID for further processing or updates.
Properties
| Name | Meaning |
|---|---|
| Operation | The action to perform on Kanboard projects, either 'Get' to retrieve a specific project or 'List All' to retrieve all projects. |
| Project ID | The unique identifier of the project to retrieve. Required only when the 'Get' operation is selected. |
Output
JSON
id- The unique identifier of the project.name- The name of the project.description- The description of the project.start_date- The start date of the project.end_date- The end date of the project.status- The current status of the project.
Dependencies
- Kanboard API endpoint URL and an API key credential for authentication.
Troubleshooting
- Ensure the Kanboard API URL is correct and accessible from the n8n instance.
- Verify that the API key credential is valid and has the necessary permissions to access project data.
- If the 'Get' operation is used, ensure the provided Project ID exists and is correct.
- Common error message: 'Kan Project operation failed' indicates issues with API request or credentials; check the detailed message for specifics.
Links
- Kanboard API Documentation - Official documentation for Kanboard API endpoints and usage.