> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Board

> Deletes a board and every pin saved to it

Deletes a board and every pin saved to it. This cannot be undone.

|                       |                          |
| --------------------- | ------------------------ |
| **App**               | Pinterest Organic        |
| **Operation ID**      | `pinterest_delete_board` |
| **Type**              | Action                   |
| **Connection**        | `pinterest` (required)   |
| **Credits per run**   | 1                        |
| **Agent / MCP tool**  | Yes                      |
| **Requires approval** | Yes (write operation)    |

## Inputs

| Field   | Type                 | Required | Default | Description                                                                                                                                         |
| ------- | -------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| `board` | string or SelectItem | Yes      | -       | The board to delete. Accepts a board id, which pinterest\_list\_boards returns. Deleting a board also deletes every pin on it, and it is permanent. |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

## Output

**Type**: `Dict`

Confirms the board was deleted.

**Fields**: `board_id`, `deleted`

**Example**:

```json theme={"dark"}
{
  "board_id": "549755885175",
  "deleted": true
}
```
