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.
| Parameter | Type | Required | Description |
|---|---|---|---|
| account_id | AccountId | ✓ | Identifier of the account to delete. |
| Parameter | Type | Description |
|---|---|---|
| result | string | Returns 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"
}
| Parameter | Type | Description |
|---|---|---|
| NoSuchAccount | string | The specified account_id was not found. |
| ErrorLoadingAccount | string | Storage read error. |
| ErrorSavingAccount | string | Storage write error. |
| InternalError | string | Unhandled internal error. |