update_column
Partially update a Kanboard column by providing only the fields to change, such as title or task limit, with validation to prevent invalid modifications.
Instructions
Update an existing Kanboard column (partial update). Only the fields you pass are changed; omitted fields keep their current values, and validation runs before any write, so an invalid call modifies nothing. At least one field besides 'column_id' must be provided — otherwise VALIDATION_ERROR. NOT for reordering — use move_column instead; to delete a column use delete_column. Returns { ok: true, column_id } on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column_id | Yes | Column id to update (required). | |
| title | No | New column title (1–255 chars). | |
| task_limit | No | New WIP limit (0 = unlimited). Omit to leave unchanged. | |
| description | No | New column description. |