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.
Parameter | Type | Required | Description |
---|---|---|---|
account_id | AccountId | ✓ | Account whose ticker list will be updated. |
tickers | array of strings | ✓ | One or more coin tickers to remove. |
Parameter | Type | Description |
---|---|---|
result | string | Returns 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"
}
Parameter | Type | Description |
---|---|---|
TickerTooLong | string | A ticker string exceeds the maximum allowed length. |
NoSuchAccount | string | The specified account_id does not exist. |
ErrorLoadingAccount | string | Storage read error. |
ErrorSavingAccount | string | Storage write error. |
InternalError | string | Unhandled internal error. |