# Delete a bank account

**DELETE** `/bank-accounts/{bank_account_id}`

This deletes a bank account.

> **Note: Removing accounts**
>
> Bank Accounts can only be deleted when they have a $0 balance.

### Path Parameters

- `bank_account_id` `string` _(required)_ — Unique identifier for the bank account.

**Request**

```shell
curl 'https://api.column.com/bank-accounts/<bank_account_id>' \
  -XDELETE \
  -u :<YOUR API KEY>
```

**Response 200**

```json
{}
```
