Public/Curanet/M365/Get-CuranetM365TenantLicenses.ps1
function Get-CuranetM365TenantLicenses() { param( [Parameter(Mandatory)] [string] $CustomerId ) Connect-CuranetM365API -CustomerId $CustomerId $Response = Invoke-WebRequest -Method GET -Authentication Bearer -Token (ConvertTo-SecureString $Global:CuranetM365APIToken.access_token -AsPlainText -Force) -Uri "https://office365.curanet.dk/api/license/" if($Response.StatusCode -eq 200) { $JsonResponse = $Response.Content | ConvertFrom-Json return $JsonResponse.value } else { throw "Failed to get M365 license information" } } |