'{username}', 'apiKey' => '{apiKey}', )); // 2. Obtain a Volume service object from the client. $volumeService = $client->volumeService(null, '{region}'); // 3. Get the volume. $snapshot = $volumeService->snapshot('{snapshotId}'); /** @var $snapshot OpenCloud\Volume\Resource\Snapshot **/ echo "ID: " . $snapshot->id() . " | " . "Name: " . $snapshot->name() . PHP_EOL;