Forum Discussion

SLI's avatar
SLI
Helper IV
7 years ago
Solved

ad connector

hello

How to recover the user table from the azure active directory.

Using the content pack it does not work because I do not have the data I want.
My goal is to have the list of users with their date of last connection and the license that is assigned to them and this by country, site and domain

Then this table will be related to data provided from  O365, to know wich product is used by each user (teams, skype, exchange, sharepoint)

I've tried the AD connector of power bi desktop but it did not give anything .

 

thank youin advance for your help

 

sabrina,

 

  • Anonymous's avatar
    Anonymous
    7 years ago

    SLI,

    The AD connector in Power BI Desktop only works with Windows Active Directory. To query Azure Active Directory, you can use Azure AD Graph API. You can add a blank query in Power BI Desktop, then paste the following code into Advanced Editor of the blank query.

    let
    
    Source = Json.Document(Web.Contents("https://graph.windows.net/domain.com/users?api-version=1.6")
    
    in
    
    Source


    There is a similar thread for your reference.
    https://community.powerbi.com/t5/Desktop/Get-Data-Active-Directory/m-p/73792

    Regards,
    Lydia

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    SLI,

    The AD connector in Power BI Desktop only works with Windows Active Directory. To query Azure Active Directory, you can use Azure AD Graph API. You can add a blank query in Power BI Desktop, then paste the following code into Advanced Editor of the blank query.

    let
    
    Source = Json.Document(Web.Contents("https://graph.windows.net/domain.com/users?api-version=1.6")
    
    in
    
    Source


    There is a similar thread for your reference.
    https://community.powerbi.com/t5/Desktop/Get-Data-Active-Directory/m-p/73792

    Regards,
    Lydia