---
title: "Update a Board View"
method: PUT
path: "/1/boards/{boardId}/views/{viewId}"
tags: ["Boards"]
---

# Update a Board View

`PUT /1/boards/{boardId}/views/{viewId}`

Update a Board View by specifying its ID and full details.

## Request body

- UpdateBoardViewRequest
  - `id` string — Unique identifier for the board view.
  - `name` string, required — The name of the view.
  - `filters` BoardViewFilter[], required — The filters to apply to this view.
    - `column` string, required — The column name to filter on.
    - `operation` '=' | '!=' | '>' | '>=' | '<' | '<=' | 'starts-with' | 'does-not-start-with' | 'ends-with' | 'does-not-end-with' | 'exists' | 'does-not-exist' | 'contains' | 'does-not-contain' | 'in' | 'not-in', required — The filter operation.
    - `value` string — The value to filter by.

## Response `200`

Success

- BoardViewResponse
  - `id` string — Unique identifier for the board view.
  - `name` string — The name of the view.
  - `filters` BoardViewFilter[]
    - `column` string, required — The column name to filter on.
    - `operation` '=' | '!=' | '>' | '>=' | '<' | '<=' | 'starts-with' | 'does-not-start-with' | 'ends-with' | 'does-not-end-with' | 'exists' | 'does-not-exist' | 'contains' | 'does-not-contain' | 'in' | 'not-in', required — The filter operation.
    - `value` string — The value to filter by.

## Other responses

- `400` — The provided request body was invalid.
- `401` — Unauthorized
- `404` — Not Found
- `409` — Conflict
- `422` — Validation Failed
- `429` — Rate Limit Exceeded
- `default` — Error

---

[API](https://skmtc.net/honeycomb/apis/honeycomb-api.md) · [All operations](https://skmtc.net/honeycomb/apis/honeycomb-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/honeycomb/honeycomb-api/revisions/117619fac2a5/schema)
