boards

Update board

Update a board owned by the "operating user_account".

patch/boards/{board_id}

Path parameters

board_idstring required

Unique identifier of a board.

Request body

namestring
descriptionstring nullable
privacy'PUBLIC' | 'SECRET'

Example request

{
  "name": "Summer Recipes",
  "description": "My favorite summer recipes"
}

Response

response

idstring
namestring required
descriptionstring nullable
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>

Example response

{
  "id": "549755885175",
  "name": "Summer Recipes",
  "description": "My favorite summer recipes"
}

Changes