## Delete Bank Account

**delete** `/print-mail/v1/bank_accounts/{id}`

Delete a bank account by ID. Note that this operation cannot be undone.

### Path Parameters

- `id: string`

### Returns

- `id: string`

  A unique ID prefixed with bank_account_

- `deleted: true`

  - `true`

- `object: "bank_account"`

  Always `bank_account`.

  - `"bank_account"`

### Example

```http
curl https://api.postgrid.com/print-mail/v1/bank_accounts/$ID \
    -X DELETE \
    -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY"
```

#### Response

```json
{
  "id": "bank_account_sqF12lZ1VlBb",
  "deleted": true,
  "object": "bank_account"
}
```
