Acronis information

v1
swiss-backup
get
/1/swiss_backups/{swiss_backup_id}/acronis_informations

Get Acronis information, from the Acronis API, for the given Swiss Backup product

Path parameters

swiss_backup_id
requiredinteger

Unique identifier of the Swiss Backup to request.

Examples:57401

Response Body

application/json
resultrequiredstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
dataAcronis Usage

Example request

                <?php
use GuzzleHttp\Client;

$client = new Client();
$headers = [
	'Authorization' => 'Bearer YOUR-TOKEN-HERE',
	'Content-Type' => 'application/json'
];

$request = new Request('GET', 'https://api.infomaniak.com/1/swiss_backups/{swiss_backup_id}/acronis_informations', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

application/json
                
                    
{
"result":"success",
"data":{
"storage_used_acronis":123556789000,
"nb_slots_workstation":0,
"nb_slots_server":2,
"nb_slots_virtual":1,
"nb_slots_mobile":5
}
}