show_or_hide_view_columns
Show or hide specific columns in a view by passing column IDs and a visibility flag, leaving all other columns untouched.
Instructions
Show or hide specific columns in a view without affecting others. Pass field IDs + a visibility flag — every listed ID is set to that state, all other columns are untouched. Use set_view_columns instead when you want to define the full visible set from scratch. Use show_or_hide_all_columns to bulk-toggle every column at once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The Airtable base/application ID | |
| viewId | Yes | The view ID (e.g. "viwXXX") | |
| columnIds | Yes | Array of field IDs to show or hide | |
| visibility | Yes | true to show, false to hide | |
| debug | No | When true, include raw Airtable response in output for diagnostics |