The API allows you to view vProtect version and get custom image of logo and background.
Get custom background image from "/opt/vprotect/custom/background".
media type | data type | description |
---|---|---|
text/plain | object | custom background image encoded in base64 |
GET /background
Content-Type: */*
Accept: text/plain
...
HTTP/1.1 200 OK
Content-Type: text/plain
...
Get branding configuration
media type | data type | description |
---|---|---|
application/json | BrandConfigurationDetails (JSON) | branding configuration |
GET /branding-configuration
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"applicationSupport" : true,
"insightSupport" : true,
"sparsifySupported" : true,
"dedupSupported" : true,
"hypervisors" : [ "KVM", "HYPERV" ],
"hypervisorManagers" : [ "HYPERV", "RHEV" ],
"backupDestinations" : [ "RUBRIK", "DATAPROTECTOR" ],
"storageProviders" : [ "NUTANIX_VG", "CEPH_RBD" ],
"applicationConfigs" : [ "ETCD_BACKUP", "VPROTECT_GIT_REPOSITORY_BACKUP" ]
}
Get custom logo image from "/opt/vprotect/custom/logo".
media type | data type | description |
---|---|---|
text/plain | object | custom logo image encoded in base64 |
GET /logo
Content-Type: */*
Accept: text/plain
...
HTTP/1.1 200 OK
Content-Type: text/plain
...
Get vProtect version.
media type | data type | description |
---|---|---|
application/json | StringDTO (JSON) | vProtect version |
GET /version
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"value" : "..."
}
Get capabilities list supported by the license file
media type | data type | description |
---|---|---|
application/json | SupportedLicenseCapabilitiesDetails (JSON) | capabilities list supported by the license file |
GET /capabilities/supported-by-license
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"virtualMachineSupport" : true,
"applicationSupport" : true,
"storageSupport" : true,
"cloudSupport" : true,
"osAgentSupport" : true,
"endpointsSupport" : true
}