Type to search...

Super Backup: get

Request

HTTP request

GET /super-backup/v1/<cloudId> HTTP/1.1

Parameters

Parameter name Value Description
Path parameters
cloudId String ID of cloud
Optional query parameters
projection string Projection settings; comma separeted string see

Request Body

This method does not support request body.

Response

If successful, this method returns a super backup resource in the response body.

Response HTTP status code

HTTP status code Description
200 Success, super backup resource
404 Super backup does not exist

For more information about HTTP codes, click here.

Rate limit

Detailed information for cloud rate limitation is available on Shardimage developers.

SDK

use shardimage\shardimagephp\auth\Client;
 
$client = new Client([
    'apiKey' => '<apiKey>',
    'apiSecret' => '<apiSecret>',
    'imageSecret' => '<imageSecret>',
]);
 
$superBackup = $client->getSuperBackupService()->view('<cloudId>');
Table of contents