Set GUI Storage Account Name
API-v2gui_storage::set_account_name
Sets a new name
for the specified account.
Parameter | Type | Required | Description |
---|---|---|---|
account_id | AccountId | ✓ | Account to rename. |
name | string | ✓ | New display name (≤ 255 characters). |
Parameter | Type | Description |
---|---|---|
result | string | Returns success when the name has been updated. |
set_account_name
POST
gui_storage::set_account_name{
"mmrpc": "2.0",
"method": "gui_storage::set_account_name",
"params": {
"account_id": {
"type": "iguana"
},
"name": "Legacy Account"
},
"id": 16,
"userpass": "RPC_UserP@SSW0RD"
}
Parameter | Type | Description |
---|---|---|
NameTooLong | string | Provided name exceeds maximum 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. |