On this page

Delete GUI Storage Account

API-v2gui_storage::delete_account

Deletes an account entry from GUI storage. This operation only affects the wallet's metadata database and does not touch MarketMaker's in-memory state.

ParameterTypeRequiredDescription
account_idAccountIdIdentifier of the account to delete.

ParameterTypeDescription
resultstringReturns success when the account has been removed.

delete_account

POST
gui_storage::delete_account
{
  "mmrpc": "2.0",
  "method": "gui_storage::delete_account",
  "params": {
    "account_id": {
      "type": "iguana"
    }
  },
  "id": 3,
  "userpass": "RPC_UserP@SSW0RD"
}

ParameterTypeDescription
NoSuchAccountstringThe specified account_id was not found.
ErrorLoadingAccountstringStorage read error.
ErrorSavingAccountstringStorage write error.
InternalErrorstringUnhandled internal error.