Removing devices in JSON-RPC API

To remove a backup device, use the RemoveAccount method.

Devices are removed together with all data that has been backed up for them. There is no way to restore the data after the device has been deleted from the system.

Required parameters

Parameter Description Supported values
accountId The ID of the backup device to remove <int> Integer

Sample request

{
    "id": "jsonrpc",
    "visa": "{{visa}}",
    "method": "RemoveAccount",
    "jsonrpc": "2.0",
    "params": {
	"accountId": 72899
    }
}

Sample response

{
    "id": "jsonrpc",
    "jsonrpc": "2.0",
    "result": null,
    "visa": "{{visa}}"
}