update_view_group_levels
Set grouping on an Airtable view: replace existing group levels or append new ones below them. Pass an empty array to clear all grouping.
Instructions
Set grouping on a view. Default mode replaces all existing group levels — pass an empty array with operation="replace" to clear grouping. Use operation="append" to add new group levels below the existing ones without rewriting them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The Airtable base/application ID | |
| viewId | Yes | The view ID (e.g. "viwXXX") | |
| groupLevels | Yes | Array of group levels. Empty array [] clears grouping when operation="replace". | |
| operation | No | How the given groupLevels interact with existing ones. "replace" (default) overwrites; "append" adds the provided levels after the existing group stack. | |
| debug | No | When true, include raw Airtable response in output for diagnostics |