Can't view own Authentication Method's.

Gennessis Ocasio 21 Reputation points
2024-05-09T13:57:25.3166667+00:00

Privileged Role set, can see Authentication Methods from all users but my own, why?

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,641 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 100.2K Reputation points MVP
    2024-05-09T15:40:35.2433333+00:00

    This is a limitation of the UI, you can use the Graph API or PowerShell to check your own authentication methods:

    Connect-MgGraph -Scopes UserAuthenticationMethod.Read
    Get-MgUserAuthenticationMethod -UserId user@domain.com | fl * -Force
    
    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful