BoardViews
Fetches a list of views configured for a specific board.
View-Specific Information
SELECT
The connector uses the Monday API to process some of the filters. The connector processes other filters client-side within the connector.
- Id supports the '=','IN' comparison operators.
- BoardId supports the '=','IN' comparison operators.
- Type supports the '=' comparison operator.
SELECT * FROM BoardViews WHERE BoardId = '2182296646'
SELECT * FROM BoardViews WHERE Type = 'Chart'
SELECT * FROM BoardViews WHERE BoardId IN ('2182296646', '2181960030')
Columns
Name | Type | References | Description |
Id [KEY] | String | A unique identifier for the board view. Used to distinguish this view from others. | |
BoardId | String |
Boards.Id | The unique identifier of the board to which this view belongs. Links the view to its parent board. |
Name | String | The name of the board view, typically used for identification and display purposes. | |
Settings | String | The settings for the board view, stored as a string. Includes configurations specific to this view. | |
Type | String | The type of the board view, indicating its category or functionality (for example, Kanban, Calendar). | |
ViewSpecificData | String | Additional data specific to this board view. Supported only for form-based views and stored in a string format. | |
SourceViewId | String | The unique identifier of the template view if this view was created as a duplicate of another view. |