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

# Create board

`POST /boards`

Create a board owned by the "operation user_account".
Optional: Business Access: Specify an ad_account_id to use the owner of that ad_account as the "operation user_account".
- By default, the "operation user_account" is the token user_account.

## Query parameters

- `ad_account_id` string

## Request body

- Board — Board
  - `id` string
  - `created_at` string, date-time — Date and time of board creation.
  - `board_pins_modified_at` string, date-time — Date and time of last board pins modified.
  - `name` string, required
  - `description` string, nullable
  - `collaborator_count` integer — Count of collaborators on the board.
  - `pin_count` integer — Count of pins on the board.
  - `follower_count` integer — Board follower count.
  - `media` object — Board media.
    - `image_cover_url` string, nullable — Board cover image.
    - `pin_thumbnail_urls` string[] — Board pin thumbnail urls.
  - `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
  - `created_at` string, date-time — Date and time of board creation.
  - `board_pins_modified_at` string, date-time — Date and time of last board pins modified.
  - `name` string, required
  - `description` string, nullable
  - `collaborator_count` integer — Count of collaborators on the board.
  - `pin_count` integer — Count of pins on the board.
  - `follower_count` integer — Board follower count.
  - `media` object — Board media.
    - `image_cover_url` string, nullable — Board cover image.
    - `pin_thumbnail_urls` string[] — Board pin thumbnail urls.
  - `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

- **2023-05-12** (v5) `689b4b267639` — 7 info
  - added the new optional `query` request parameter `ad_account_id`
  - added the optional property `board_pins_modified_at` to the response with the `201` status
  - added the optional property `collaborator_count` to the response with the `201` status
  - added the optional property `created_at` to the response with the `201` status
  - …3 more
- **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/0ff12596bafd/schema)
