Update Table View
update_view_tableUpdate a table board view's name, filters, sort order, tags, and column/group settings. Specify only the fields to modify; omitted ones remain unchanged.
Instructions
Update an existing table-type board view — change its name, filters, sort, tags, or table-specific settings (column visibility/order and group-by). Provide only the fields you want to change. Omitted fields are left unchanged.
Filter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text
Example settings.columns: { "column_properties": [{ "column_id": "status", "visible": true }], "column_order": ["name", "status", "date"] } Example settings.group_by: { "conditions": [{ "columnId": "status" }], "hideEmptyGroups": true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| viewId | Yes | The ID of the table view to update | |
| boardId | Yes | The board ID the view belongs to | |
| name | No | New name for the view (omit to leave unchanged) | |
| filter | No | Filter configuration to apply to the view | |
| sort | No | Sort configuration for the view | |
| tags | No | Tags to apply to the view | |
| settings | No | Table-specific view settings (column visibility/order, group-by) |