Skip to content
URL:
https://<root>/backupRestoreInfo
Methods:
GET
Version Introduced:
12.0

Description

The backupRestoreInfo 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

PropertyDetails

f

(Required)

The response format. The only supported response format is html.

token

(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

PropertyDetails

incrementalBackupTimeStamp

A Unix timestamp of the last incremental backup of ArcGIS Video Server.

incrementalRestoreTimeStamp

A Unix timestamp of the last incremental restore for ArcGIS Video Server.

incrementalBackupEnabled

A binary value specifying whether the option for ArcGIS Video Server to create transaction logs whenever an incremental backup occurs is enabled.

Values: true | false

fullBackupTimeStamp

A Unix timestamp of the last full backup of ArcGIS Video Server.

fullRestoreTimeStamp

A Unix timestamp of the last full restore for ArcGIS Video Server.

backupModeTimeStamp

The date-time information (Unix) of the last backup performed in BACKUP mode for the organization.

Example usage

The following is a sample request URL used to access the backupRestoreInfo resource:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/backupRestoreInfo?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
    "incrementalBackupTimeStamp": 0,
    "incrementalRestoreTimeStamp": 0,
    "incrementalBackupEnabled": false,
    "fullBackupTimeStamp": 1767633817855,
    "fullRestoreTimeStamp": 0,
    "backupModeTimeStamp": 0
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.