---
title: "Create board"
method: POST
path: "/boards"
tags: ["boards"]
---

# Create board

`POST /boards`

Create a board owned by the "operation user_account".
- By default, the "operation user_account" is the token user_account.

## Request body

- 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>

## Response `201`

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` — The board name is invalid or duplicated.
- `default` — Unexpected error

## Changes

- **2021-11-05** (v5) `8583f6373a80` — 1 breaking, 1 info
  - the `owner` response's property type changed from no type to `object` for status `201`
  - added the non-success response with the status `400`

[Change history](https://skmtc.dev/pinterest/apis/pinterest-rest-api/changes/boards/post.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)
