update_column
Modify existing columns by renaming, changing types, updating dropdown options, or toggling required/hidden fields. Type changes convert compatible values and report converted vs. cleared results.
Instructions
Change a column after the fact: rename it, change its type (e.g. number -> currency), replace settings (dropdown options), or set isRequired / isHidden. A type change converts existing values (number↔currency, text→number/date/checkbox, anything→text) and clears the ones that cannot convert; the response carries conversion: { converted, cleared }. settings.validation rules apply here too.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| type | No | New column type (same list as create_column) | |
| force | No | Skip the name/type sanity check | |
| boardId | Yes | ||
| columnId | Yes | ||
| isHidden | No | ||
| settings | No | Replaces the column settings, e.g. { options: [...] } for dropdown/status | |
| projectId | Yes | ||
| isRequired | No | ||
| description | No |