Forum Discussion
ad connector
- Anonymous7 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
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