GET /system/backup
FROM API REVISION 4.0
This resource contains an array of all the Envysion projects created on the controllers.
Used when you are operating a browser without access to the header parameter. This allows you to choose which encoding you want to use for the response:
All these resources can be used according what the resource allows.
To address the raw value of a primitive property, clients append a path segment containing the string $value to the property URL.
To use this query option you need to use the classic resource and add the element name you want to print followed by the query string name.
Be careful, the parameter query string is used in the URL and is not like other parameters.
The $select system query option allows clients to request a limited set of properties for each entity.
The value pass in the parameter can be:
If there is no value after the select query option, the parameter will be ignored. All the values that are not specified will not be printed in the response.
The $expand system query option specifies the related resources to be included in line with retrieved resources.
The value passed in the parameter can be:
The $expand system query option can be used with the $levels query option, to expand recursively.
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
Object Name: Backup
Property Name | Type | Description | Method |
---|---|---|---|
Jobs | Array <Job> |
This is a list of jobs. | GET |
Targets | Array <Target> |
This is the list of available target. | GET |
EnvysionProjects | Array <String> |
This property contains all the Envysion projects name existing on the device. | GET |
URL Example: https://0.0.0.0/api/rest/v1/system/backup
{
"envysionProjects": [
"SpaceUtilization",
"blank_585D",
"ENVYSIONimages",
"modules",
"nLightExplorer",
"XpressENVYSION",
"ENVYSIONwidgets"
],
"jobs": {
"href": "/api/rest/v1/system/backup/jobs",
"name": "jobs"
},
"targets": {
"href": "/api/rest/v1/system/backup/targets",
"name": "targets"
}
}
URL Example: https://0.0.0.0/api/rest/v1/system/backup
<?xml version="1.0" encoding="utf-8"?>
<Backup>
<Targets>
<Href>/api/rest/v1/system/backup/targets</Href>
<Name>targets</Name>
</Targets>
<Jobs>
<Href>/api/rest/v1/system/backup/jobs</Href>
<Name>jobs</Name>
</Jobs>
<EnvysionProjects>
<EnvysionProject>SpaceUtilization</EnvysionProject>
<EnvysionProject>blank_585D</EnvysionProject>
<EnvysionProject>ENVYSIONimages</EnvysionProject>
<EnvysionProject>modules</EnvysionProject>
<EnvysionProject>nLightExplorer</EnvysionProject>
<EnvysionProject>XpressENVYSION</EnvysionProject>
<EnvysionProject>ENVYSIONwidgets</EnvysionProject>
</EnvysionProjects>
</Backup>