Use Restoring backup to restore backup on your VPS of your server.
HTTP Request
Parameters
Sample Code
PHP
<?php
require_once('/usr/local/virtualizor/sdk/enduser.php');
$key = 'your_api_key';
$pass = 'your_api_pass';
$ip = 'your_Server_ip';
$enduser = new Virtualizor_Enduser_API($ip, $key, $pass);
$vid = 3615;
$post = [
'bkid' => 3, // bkid of backup
// 'backuply_restore' => 1, // For backuply backups Restore
'restore' => 1 // For legacy backups Restore
];
$output = $enduser->restore_backup($post, $vid);
print_r(json_encode($output));
?>Curl
curl -k -X POST -d "restore=1" -L
"https://hostname:4083/index.php?act=backup&
svs=3615&api=json&apikey=your_api_key&
apipass=your_api_pass"Output
{
"backups_list":[
"20191018"
],
"backup_limit":"-1",
"restore_limit":"5",
"backup_used":14,
"restore_used":0,
"service_period":{
"start":"01-10-2019",
"end":"31-10-2019"
},
"done": {
"msg": "The VPS restore process has been started. Please allow a few minutes for it to complete. You will receive a notification email when its is completed"
}
}