Kan Board

Interact with Kanboard boards and columns

Actions4

Overview

This node interacts with Kanboard's API to retrieve information about columns within Kanboard boards. Specifically, the 'Get' operation for the 'Column' resource fetches detailed information about a single column by its ID. This is useful for workflows that need to access or manipulate specific column data in Kanboard, such as automating project management tasks or integrating Kanboard data with other systems.

Use Case Examples

  1. Retrieve details of a specific Kanboard column by providing its Column ID.
  2. Use the column information to update or analyze project workflows automatically.

Properties

Name Meaning
Column ID The unique identifier of the column to retrieve information for.

Output

JSON

  • id - The unique identifier of the column.
  • title - The title or name of the column.
  • position - The position of the column within the board.
  • task_limit - The maximum number of tasks allowed in the column.
  • description - A description of the column.
  • board_id - The ID of the board to which the column belongs.

Dependencies

  • Kanboard API with an API key credential

Troubleshooting

  • Ensure the Column ID provided is correct and exists in the Kanboard instance.
  • Verify that the API credentials (API key and URL) are correctly configured and have sufficient permissions.
  • Common error messages include authentication failures or resource not found errors, which can be resolved by checking credentials and the validity of the Column ID.

Links

Discussion