Format Your New Topic as Follows:
API Endpoint(s) and/or Zoom API Event(s)
/api/rest/reference/billing/ma/#operation/GetPlanUsage
Description
This endpoint does not appear to return information on the new “Basic” license.
Error?
The endpoint is returning all other license information, but nothing about the “Basic” license that is now no longer unlimited
How To Reproduce
Define the URI for API request
$URI = “/accounts/me/plans/usage”
Set the headers for the API request
$headers = @{
‘Authorization’ = “Bearer $global:ZoomAuthToken”
‘Content-Type’ = ‘application/json’
}
Make the request to get the license usage data
$response = Retry-HttpRequest -ScriptBlock {
Invoke-RestMethod -Uri $URI -Headers $headers -Method Get -ErrorAction Stop
}