---
title: "Update board"
method: PATCH
path: "/boards/{board_id}"
tags: ["boards"]
---

# Update board

`PATCH /boards/{board_id}`

Update a board owned by the "operating user_account".

## Path parameters

- `board_id` string, required

## Request body

- BoardUpdate — Board fields for updates
  - `name` string
  - `description` string, nullable
  - `privacy` 'PUBLIC' | 'SECRET'

## Response `200`

response

- Board — Board
  - `id` string
  - `name` string, required
  - `description` string, nullable
  - `owner` BoardOwner
    - `username` string
  - `privacy` 'PUBLIC' | 'PROTECTED' | 'SECRET' — Privacy setting for a board. Learn more about <a href="https://help.pinterest.com/en/article/secret-boards">secret boards</a> and <a href="https://help.pinterest.com/en/business/article/protected-boards">protected boards</a>

## Other responses

- `400` — Invalid board parameters.
- `403` — Not authorized to update the board.
- `429` — This request exceeded a rate limit. This can happen if the client exceeds one of the published rate limits or if multiple write operations are applied to an object within a short time window.
- `default` — Unexpected error

## Changes

- **2021-11-05** (v5) `8583f6373a80` — 2 breaking, 2 info
  - added the pattern `^\d+$` to the `path` request parameter `board_id`
  - the `owner` response's property type changed from no type to `object` for status `200`
  - added the non-success response with the status `400`
  - added the non-success response with the status `403`

[Change history](https://skmtc.dev/pinterest/apis/pinterest-rest-api/changes/boards/:board_id/patch.md)

---

[API](https://skmtc.dev/pinterest/apis/pinterest-rest-api.md) · [All operations](https://skmtc.dev/pinterest/apis/pinterest-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pinterest/pinterest-rest-api/revisions/0d5998752011/schema)
