- URL:
- https://<root>/backupRestoreInfo
- Methods:
GET- Version Introduced:
- 12.0
Description
The backup resource will output information regarding ArcGIS Video Server's current backup settings. If incremental backups are selected as opposed to full backups, there is information included regarding when incremental backups are intended to run.
Request parameters
| Property | Details |
|---|---|
(Required) | The response format. The only supported response format is |
(Required) | Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation. |
Response properties
| Property | Details |
|---|---|
| A Unix timestamp of the last incremental backup of ArcGIS Video Server. |
| A Unix timestamp of the last incremental restore for ArcGIS Video Server. |
| A binary value specifying whether the option for ArcGIS Video Server to create transaction logs whenever an incremental backup occurs is enabled. Values: |
| A Unix timestamp of the last full backup of ArcGIS Video Server. |
| A Unix timestamp of the last full restore for ArcGIS Video Server. |
| The date-time information (Unix) of the last backup performed in |
Example usage
The following is a sample request URL used to access the backup resource:
https://organization.example.com/<context>/admin/backupRestoreInfo?f=pjsonJSON Response example
{
"incrementalBackupTimeStamp": 0,
"incrementalRestoreTimeStamp": 0,
"incrementalBackupEnabled": false,
"fullBackupTimeStamp": 1767633817855,
"fullRestoreTimeStamp": 0,
"backupModeTimeStamp": 0
}