我的公司正在使用Azure Active Directory。我将C#与Microsoft graph API结合使用,我想通过C#检索被阻止的登录信息。
答案 0 :(得分:0)
阻止的登录信息由accountEnabled
属性提供。参见User Properties。
因此,您只需要使用select
参数即可找到它。
GET https://graph.microsoft.com/v1.0/users?$select=displayName,userPrincipalName,accountEnabled