---
title: "Delete personal merchant account"
url: "https://docs.signnow.com/docs/request-payments/operations/delete-v2-merchant-accounts"
type: "endpoint"
section: "request-payments"
slug: "request-payments/operations/delete-v2-merchant-accounts"
method: "DELETE"
path: "/v2/merchant-accounts/{merchant_account_id}"
operation_id: "delete-v2-merchant-accounts"
authorization: "bearer"
---

# Delete personal merchant account

`DELETE /v2/merchant-accounts/{merchant_account_id}`

This endpoint allows API users to disconnect their payment account.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `merchant_account_id` | string | Yes | ID of the connected payment account. |

## Responses

### 204

No content

### 404

User account not found.

**Example** (`Example 1`)

```json
{
  "errors": [
    {
      "message": "User merchant account `xxxxe3853f4a4624a037d90d20513a195937yyyy` is not found."
    }
  ]
}
```

**Example** (`Account not found`)

```json
{
  "errors": [
    {
      "message": "User merchant account `xxxxe3853f4a4624a037d90d20513a195937yyyy` is not found."
    }
  ]
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/v2/merchant-accounts/{merchant_account_id}" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/request-payments/operations/delete-v2-merchant-accounts*
