阻止用户访问portal.azure.com Microsoft图形API C#

时间:2019-12-30 19:46:39

标签: azure-active-directory microsoft-graph

我的公司正在使用Azure Active Directory。我将C#与Microsoft graph API结合使用,我想通过C#检索被阻止的登录信息。

enter image description here

1 个答案:

答案 0 :(得分:0)

阻止的登录信息由accountEnabled属性提供。参见User Properties

因此,您只需要使用select参数即可找到它。

GET https://graph.microsoft.com/v1.0/users?$select=displayName,userPrincipalName,accountEnabled