Overview
This node interacts with Kanboard projects, allowing users to either retrieve details of a specific project by its ID or list all projects. It is useful for workflows that need to fetch project information from Kanboard for further processing or automation.
Use Case Examples
- Retrieve details of a Kanboard project by specifying its Project ID.
- List all projects available in Kanboard to display or process them in a workflow.
Properties
| Name | Meaning |
|---|---|
| Project ID | The ID of the project to retrieve details for (required when using the 'Get' operation). |
Output
JSON
id- The unique identifier of the project.name- The name of the project.description- The description of the project.owner_id- The ID of the project owner.is_active- Indicates if the project is active.is_public- Indicates if the project is public.token- The project token for API access.
Dependencies
- Kanboard API with an API key credential
Troubleshooting
- Ensure the provided Project ID is correct and exists in Kanboard when using the 'Get' operation.
- Verify that the Kanboard API URL and credentials are correctly configured to avoid authentication errors.
Common error message: 'Kan Project operation failed: ' indicates an issue with the API request, such as invalid credentials, incorrect project ID, or network issues. Check the error message details to resolve the problem.
Links
- Kanboard API Documentation - Official documentation for Kanboard API endpoints and usage.