Acronis information
v1
swiss-backup
get
/1/swiss_backups/{swiss_backup_id}/acronis_informations
This API endpoint is in beta!
Endpoint should be considered in beta and is subject to change.
Get Acronis information, from the Acronis API, for the given Swiss Backup product
Rate limits: 10 calls per 5 minutes
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}}