Skip to content

Commit

Permalink
fix vb365 call
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoMiotello committed Mar 13, 2023
1 parent 724b379 commit 0608807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Repositories/LicensingRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function getUsageOfVeeamBackupReplicationLicense( string $backupServerUid
}

public function getVeeamBackupForMicrosoft365License( string $vbm365ServerUid ): RequestBuilder {
return $this->createGetRequest( sprintf( '/vbm365Servers/%s', $vbm365ServerUid ) );
return $this->createGetRequest( sprintf( '/vb365Servers/%s', $vbm365ServerUid ) );
}

/**
Expand All @@ -93,7 +93,7 @@ public function getUsageOfAllVeeamBackupForMicrosoft365Licenses(): RequestBuilde
}

public function getAllVeeamBackupForMicrosoft365Licenses(): RequestBuilder {
return $this->createGetRequest( '/vbm365Servers' );
return $this->createGetRequest( '/vb365Servers' );
}

public function getLicenseUsageByAllOrganizations(): RequestBuilder {
Expand Down

0 comments on commit 0608807

Please sign in to comment.