# URL method (delete wallet)

**Request Body - `Content-Type: application/json;charset=utf-8`**

| Parameter | Required | Description                         |
| --------- | -------- | ----------------------------------- |
| `name`    | Yes\*    | The name of requested wallet        |
| `address` | Yes\*    | The address of the requested wallet |

*\*Only one of either the `name` or `address` parameter should be used. If both are passed as query parameters, the `name` parameter is used.*&#x44;ELETE/api/v3/wallet/:nameDELETE/api/v3/wallet/:address

**Example request with name**

```
curl -X DELETE http://localhost:2442/api/v3/wallet/first \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request with address**

```
curl -X DELETE http://localhost:2442/api/v3/wallet/H3rKFuQySycSigA8saiDfmBw3tUE4HEN9 \
-H 'Content-Type: application/json;charset=utf-8'
```
