Get storage space Statistics belonging to a Server
GET/servers/ {serverId}/ storage-space-statistics/
v2
GET
storagespace-get-server-statistics
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/servers/string/storage-space-statistics
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.project.storagespaceGetServerStatistics({
"serverId": "string"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Project\StoragespaceGetServerStatistics\StoragespaceGetServerStatisticsRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new StoragespaceGetServerStatisticsRequest(
serverId: "string"
));
$response = $client->project()->storagespaceGetServerStatistics($request);
var_dump($response->getBody();