Skip to content

Delete Wallet API

David Tavarez edited this page Jun 20, 2020 · 2 revisions

Delete wallet.

URL : /v2

Method : delete_wallet

Params

  • username(string): The username that was used to create the wallet.
  • password(string): The user's password. Since the password is transmitted as plaintext, future versions will require https.

Request

{
  "jsonrpc": "2.0",
  "method": "delete_wallet",
  "id": 1,
  "params": {
    "username": "David",
    "password": "P@ssw0rd123!"
  }
}

Response

{
  "id": 1,
  "jsonrpc": "2.0",
  "result": {
    "status": "SUCCESS"
  }
}