Create Table View
create_view_tableCreate a table view on a Monday.com board with filters, sorting, tags, and customizable column visibility, order, and group-by settings.
Instructions
Create a new table-type board view with optional filters, sort, tags, and table-specific settings (column visibility/order and group-by). Use this instead of create_view when you need to configure table-specific settings. For a simple table view, create_view also works.
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 |
|---|---|---|---|
| boardId | Yes | The board ID to create the table view on | |
| name | No | The name of the view (e.g. "High Priority Items", "My Tasks") | |
| filter | No | Filter configuration for 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) |