Search code examples
getmicrosoft-graph-apioffice365

Microsoft graph - License Overview


Is there a possibility to build a Microsoft Graph GET request to get a license overview like this:

License Overview


Solution

  • The closest Graph API endpoint is

    GET /subscribedSkus
    

    which returns the list of commercial subscriptions that an organization has acquired.

    Check properties of subscribedSku resource and compare them with properties returned by Get-MsalAccountSku

    Resources:

    List subscribedSkus

    subscribedSku resource type