Use the Disable Databackup API to delete the cron job set for taking backup of database. Disabling the backup will not delete the backed up files.
HTTP Request
https://hostname:4085/index.php?act=databackup
Parameters
Name | Method | Value | Description | Required |
---|---|---|---|---|
act | GET | databackup | The action will return the list of backup server on success | Yes |
databasebackups_delete | POST | 1 | The value should be set to 1 to delete the cron job | Yes |
Sample Code
<?php
require_once('/usr/local/virtualizor/sdk/admin.php');
$key = 'your_api_key';
$pass = 'your_api_pass';
$ip = 'your_server_ip';
$admin = new Virtualizor_Admin_API($ip, $key, $pass);
$post = array();
$post['databasebackups_delete'] = 1;
$output = $admin->databackup($post);
print_r(json_encode($output));
?>
Output
{
"title": "Database Backup",
"backup_servers": {
"1": {
"bid": "1",
"name": "slate_doc_server",
"type": "SSH"
}
},
"timenow": 1537286069,
"time_taken": "0.268"
}