# List Board Views Retrieve a list of all views for a board. Note: Each board is limited to a maximum of 50 views. Endpoint: GET /1/boards/{boardId}/views Version: 1.0.0 Security: configuration_key ## Path parameters: - `boardId` (string, required) The unique identifier (ID) of a Board. ## Response 200 fields (application/json): - `id` (string) Unique identifier for the board view. Example: "eC_abc123" - `name` (string) The name of the view. Example: "My View" - `filters` (array) - `filters.column` (string, required) The column name to filter on. Example: "status" - `filters.operation` (string, required) The filter operation. Enum: "=", "!=", ">", ">=", "<", "<=", "starts-with", "does-not-start-with", "ends-with", "does-not-end-with", "exists", "does-not-exist", "contains", "does-not-contain", "in", "not-in" - `filters.value` (any) The value to filter by. Example: "error" ## Response 401 fields (application/json): - `error` (string) ## Response 403 fields (application/json): - `error` (string) ## Response 404 fields (application/json): - `error` (string) ## Response 429 fields (application/json): - `error` (string) ## Response default fields (application/json): - `error` (string)