Delete a Pinterest board
delete_pinterest_boardPermanently delete a Pinterest board with all its Pins. First call returns board details for verification; second call with exact name and pin count executes the irreversible deletion.
Instructions
PERMANENTLY delete a board AND EVERY PIN ON IT. This is the heaviest thing that can be done to a Pinterest account and there is no undelete. Call it WITHOUT confirm first: nothing is deleted, and it answers with the board’s real name, how many Pins are on it, how many people FOLLOW it and how many collaborators lose access — all read back from Pinterest. Show the user that, then call again with confirm:true plus confirmName (its exact name) and confirmChildren (the Pin count it reported); those echoes exist because a caller who has not looked at the board cannot supply them, and confirming intent alone does not prove aim. IF THEY ONLY WANT IT OUT OF PUBLIC VIEW: do NOT reach for update_pinterest_board(privacy:"SECRET") — making a board secret is a SEPARATE Pinterest permission (boards:write_secret) that Hermoso does not request, so that call is refused for every user and steering someone onto it turns a survivable delete into a dead end. The reversible option lives in Pinterest’s own app. The unconfirmed refusal says which of the two applies to this connection, read off the live scope set — relay it verbatim rather than guessing. 0 credits. Needs Pinterest connected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | numeric board id from list_pinterest_boards | |
| confirm | No | REQUIRED true — the board and its Pins are gone for good | |
| confirmName | No | the board’s EXACT name as the unconfirmed call reported it | |
| confirmChildren | No | the number of Pins the unconfirmed call reported on the board |