Backup & Recovery overview
This section describes how a backup of a user website can be configured, managed, and retrieved over the API. SiteLock provides backup services in two areas: Backup Files and Backup Database.
Backup Files downloads and syncs website files to a SiteLock backup mirror system to perform incremental backups of new and modified files. Users may restore their files to their original locations, or package them into a ZIP file for downloading.
Backup Database accesses the site’s MySQL database, creates a backup package of the database schema, and stores it on SiteLock’s servers. Each backup session performs a full schema backup. The database schema may be restored to the database or packaged in a ZIP file for downloading.
SiteLock provides API methods for:
-
configuring backup settings
-
managing backup
-
retrieving results of backup
The API endpoint is:
https://api.sitelock.com/v1/partner
Configuring settings for backup
SiteLock has two methods for working with backup settings—getBackupSettings and modifyBackupSettings.
getBackupSettings
retrieves the current backup configuration settings for a site, and modifyBackupSettings
can be used to update the backup settings.
Managing backup
The manageBackup method is intended to manage database and/or file backup for a website.
Depending on the value of the action
element, a backup is created, restored, or deleted.
To restore a website from backup, call manageBackup
with the backup_files
and/or backup_db
elements, depending on whether you would like to restore both the files and the database or one of these.
You may also choose to restore individual files and/or directories of a webite.
Retrieving results of backup
There are three methods that can be used to retrieve results of a backup. The getBackupSummary method returns a summary of the backup operations for the specified date range, such as the size and date of the backup, the number of files that were backed up, and more. To find out more details about the backup, such as the list of files that were backed up, call getBackupDetails. Another option is to only retrieve files that have changed since the previous (or any other, by submitting the ID) backup, which can be done by using getBackupDetails.