On this page

Deactivate Coins in GUI Storage Account

API-v2gui_storage::deactivate_coins

Removes the provided coin tickers from the account's stored ticker list. Does not disable coins at the MarketMaker level—only GUI metadata is changed.

ParameterTypeRequiredDescription
account_idAccountIdAccount whose ticker list will be updated.
tickersarray of stringsOne or more coin tickers to remove.

ParameterTypeDescription
resultstringReturns success when the tickers have been removed (missing tickers are ignored).

deactivate_coins

POST
gui_storage::deactivate_coins
{
  "mmrpc": "2.0",
  "method": "gui_storage::deactivate_coins",
  "params": {
    "account_id": {
      "type": "hd",
      "account_idx": 0
    },
    "tickers": [
      "BTC"
    ]
  },
  "id": 13,
  "userpass": "RPC_UserP@SSW0RD"
}

ParameterTypeDescription
TickerTooLongstringA ticker string exceeds the maximum allowed length.
NoSuchAccountstringThe specified account_id does not exist.
ErrorLoadingAccountstringStorage read error.
ErrorSavingAccountstringStorage write error.
InternalErrorstringUnhandled internal error.