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

> Deletes a pin from the account

Deletes a pin from the account. This cannot be undone.

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

## Inputs

| Field    | Type   | Required | Default | Description                                                                                                         |
| -------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------- |
| `pin_id` | string | Yes      | -       | The id of the pin to delete, which pinterest\_list\_pins and pinterest\_publish\_pin return. Deletion is permanent. |

## Output

**Type**: `Dict`

Confirms the pin was deleted.

**Fields**: `pin_id`, `deleted`

**Example**:

```json theme={"dark"}
{
  "pin_id": "813744226420795884",
  "deleted": true
}
```
