{"id":8690,"date":"2025-04-01T03:11:03","date_gmt":"2025-04-01T03:11:03","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=8690"},"modified":"2025-04-07T23:36:14","modified_gmt":"2025-04-07T23:36:14","slug":"how-to-get-mfa-status-for-users-in-entra","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra","title":{"rendered":"How to get MFA status for Users in Entra"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\"># Check if required Microsoft.Graph modules are installed\n$requiredModules = @(\n    \"Microsoft.Graph.Authentication\",\n    \"Microsoft.Graph.Users\"\n)\n\nforeach ($module in $requiredModules) {\n    if (!(Get-Module -ListAvailable -Name $module)) {\n        Write-Host \"$module module not found. Installing...\"\n        Install-Module $module -Force -AllowClobber -Scope CurrentUser\n    } else {\n        Write-Host \"$module module is already installed.\"\n    }\n}\n\n# Import only the required modules\nImport-Module Microsoft.Graph.Authentication\nImport-Module Microsoft.Graph.Users\n\n# Connect to Microsoft Graph with required permissions\ntry {\n    Connect-MgGraph -Scopes @(\n        \"User.Read.All\",\n        \"UserAuthenticationMethod.Read.All\",\n        \"Directory.Read.All\",\n        \"User.ReadBasic.All\",\n        \"Policy.Read.All\"\n    ) -UseDeviceAuthentication:$false\n} catch {\n    Write-Error \"Failed to connect to Microsoft Graph: $($_.Exception.Message)\"\n    exit 1\n}\n\n# Get all enabled users with @domain.onmicrosoft.com domain\ntry {\n    Write-Host \"Fetching users...\"\n    $users = Get-MgUser -All -Property UserPrincipalName,Id,AccountEnabled -ErrorAction Stop | \n             Where-Object { $_.AccountEnabled -eq $true -and $_.UserPrincipalName -like \"*@domain.onmicrosoft.com\" }\n    \n    if ($null -eq $users -or $users.Count -eq 0) {\n        Write-Warning \"No enabled users found with @domain.onmicrosoft.com domain\"\n        Disconnect-MgGraph\n        exit 0\n    }\n    \n    Write-Host \"Found $($users.Count) enabled users\"\n} catch {\n    Write-Error \"Failed to get users: $($_.Exception.Message)\"\n    Write-Error \"Please ensure you have the correct permissions: User.Read.All, UserAuthenticationMethod.Read.All, Directory.Read.All, User.ReadBasic.All, Policy.Read.All\"\n    Disconnect-MgGraph\n    exit 1\n}\n\n$results = @()\n\nforeach ($user in $users) {\n    try {\n        Write-Host \"Checking MFA status for $($user.UserPrincipalName)...\"\n        \n        # Try using the beta endpoint for authentication methods\n        $authMethods = Invoke-MgGraphRequest -Method GET -Uri \"https:\/\/graph.microsoft.com\/beta\/users\/$($user.Id)\/authentication\/methods\" -ErrorAction Stop\n        \n        # Check if MFA methods are registered (exclude password-only methods)\n        $mfaRegistered = $authMethods.value | Where-Object { $_.'@odata.type' -ne \"#microsoft.graph.passwordAuthenticationMethod\" }\n        \n        # Determine MFA status\n        $mfaStatus = if ($mfaRegistered) { \"Enabled\" } else { \"Disabled\" }\n\n        # Add user details to results\n        $results += [PSCustomObject]@{\n            UserPrincipalName = $user.UserPrincipalName\n            MFAStatus         = $mfaStatus\n            RegisteredMethods = ($mfaRegistered | ForEach-Object { $_.'@odata.type' -replace \"#microsoft.graph.\", \"\" }) -join \", \"\n        }\n    } catch {\n        Write-Warning \"Failed to get MFA data for $($user.UserPrincipalName): $($_.Exception.Message)\"\n        \n        # Try another approach using conditional access policies\n        try {\n            Write-Host \"Trying conditional access approach for $($user.UserPrincipalName)...\"\n            \n            # Check if user is subject to MFA policies\n            $userPolicies = Invoke-MgGraphRequest -Method GET -Uri \"https:\/\/graph.microsoft.com\/beta\/users\/$($user.Id)\/authentication\/conditionalAccessPolicies\" -ErrorAction Stop\n            \n            # If user has conditional access policies, assume MFA is required\n            $hasMfaPolicy = $userPolicies.value.Count -gt 0\n            \n            # Add user details to results with conditional access approach\n            $results += [PSCustomObject]@{\n                UserPrincipalName = $user.UserPrincipalName\n                MFAStatus         = if ($hasMfaPolicy) { \"Enabled (Policy)\" } else { \"Unknown\" }\n                RegisteredMethods = \"Conditional Access Check\"\n            }\n        } catch {\n            Write-Warning \"Conditional access approach also failed for $($user.UserPrincipalName): $($_.Exception.Message)\"\n            \n            # Add user with unknown status\n            $results += [PSCustomObject]@{\n                UserPrincipalName = $user.UserPrincipalName\n                MFAStatus         = \"Unknown\"\n                RegisteredMethods = \"Check Failed\"\n            }\n        }\n    }\n}\n\n# Display results\nif ($results.Count -gt 0) {\n    $results | Format-Table -AutoSize\n} else {\n    Write-Host \"No MFA data was collected for any users.\"\n}\n\n# Disconnect from Microsoft Graph\nDisconnect-MgGraph<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-8690","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"# Check if required Microsoft.Graph modules are installed $requiredModules = @( &quot;Microsoft.Graph.Authentication&quot;, &quot;Microsoft.Graph.Users&quot; ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host &quot;$module module not found. Installing...&quot; Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host &quot;$module module is already installed.&quot; } } # Import only the required modules Import-Module\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to get MFA status for Users in Entra | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"# Check if required Microsoft.Graph modules are installed $requiredModules = @( &quot;Microsoft.Graph.Authentication&quot;, &quot;Microsoft.Graph.Users&quot; ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host &quot;$module module not found. Installing...&quot; Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host &quot;$module module is already installed.&quot; } } # Import only the required modules Import-Module\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-04-01T03:11:03+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-04-07T23:36:14+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to get MFA status for Users in Entra | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"# Check if required Microsoft.Graph modules are installed $requiredModules = @( &quot;Microsoft.Graph.Authentication&quot;, &quot;Microsoft.Graph.Users&quot; ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host &quot;$module module not found. Installing...&quot; Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host &quot;$module module is already installed.&quot; } } # Import only the required modules Import-Module\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#article\",\"name\":\"How to get MFA status for Users in Entra | Welcome to Pariswells.com\",\"headline\":\"How to get MFA status for Users in Entra\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2025-04-01T03:11:03+00:00\",\"dateModified\":\"2025-04-07T23:36:14+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#webpage\"},\"articleSection\":\"Research\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"position\":2,\"name\":\"Research\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#listItem\",\"name\":\"How to get MFA status for Users in Entra\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#listItem\",\"position\":3,\"name\":\"How to get MFA status for Users in Entra\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra\",\"name\":\"How to get MFA status for Users in Entra | Welcome to Pariswells.com\",\"description\":\"# Check if required Microsoft.Graph modules are installed $requiredModules = @( \\\"Microsoft.Graph.Authentication\\\", \\\"Microsoft.Graph.Users\\\" ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host \\\"$module module not found. Installing...\\\" Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host \\\"$module module is already installed.\\\" } } # Import only the required modules Import-Module\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/how-to-get-mfa-status-for-users-in-entra#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2025-04-01T03:11:03+00:00\",\"dateModified\":\"2025-04-07T23:36:14+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to get MFA status for Users in Entra | Welcome to Pariswells.com","description":"# Check if required Microsoft.Graph modules are installed $requiredModules = @( \"Microsoft.Graph.Authentication\", \"Microsoft.Graph.Users\" ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host \"$module module not found. Installing...\" Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host \"$module module is already installed.\" } } # Import only the required modules Import-Module","canonical_url":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#article","name":"How to get MFA status for Users in Entra | Welcome to Pariswells.com","headline":"How to get MFA status for Users in Entra","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2025-04-01T03:11:03+00:00","dateModified":"2025-04-07T23:36:14+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#webpage"},"articleSection":"Research"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","position":2,"name":"Research","item":"https:\/\/pariswells.com\/blog\/category\/research","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#listItem","name":"How to get MFA status for Users in Entra"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#listItem","position":3,"name":"How to get MFA status for Users in Entra","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#webpage","url":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra","name":"How to get MFA status for Users in Entra | Welcome to Pariswells.com","description":"# Check if required Microsoft.Graph modules are installed $requiredModules = @( \"Microsoft.Graph.Authentication\", \"Microsoft.Graph.Users\" ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host \"$module module not found. Installing...\" Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host \"$module module is already installed.\" } } # Import only the required modules Import-Module","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2025-04-01T03:11:03+00:00","dateModified":"2025-04-07T23:36:14+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"How to get MFA status for Users in Entra | Welcome to Pariswells.com","og:description":"# Check if required Microsoft.Graph modules are installed $requiredModules = @( &quot;Microsoft.Graph.Authentication&quot;, &quot;Microsoft.Graph.Users&quot; ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host &quot;$module module not found. Installing...&quot; Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host &quot;$module module is already installed.&quot; } } # Import only the required modules Import-Module","og:url":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra","article:published_time":"2025-04-01T03:11:03+00:00","article:modified_time":"2025-04-07T23:36:14+00:00","twitter:card":"summary","twitter:title":"How to get MFA status for Users in Entra | Welcome to Pariswells.com","twitter:description":"# Check if required Microsoft.Graph modules are installed $requiredModules = @( &quot;Microsoft.Graph.Authentication&quot;, &quot;Microsoft.Graph.Users&quot; ) foreach ($module in $requiredModules) { if (!(Get-Module -ListAvailable -Name $module)) { Write-Host &quot;$module module not found. Installing...&quot; Install-Module $module -Force -AllowClobber -Scope CurrentUser } else { Write-Host &quot;$module module is already installed.&quot; } } # Import only the required modules Import-Module"},"aioseo_meta_data":{"post_id":"8690","title":null,"description":null,"keywords":null,"keyphrases":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-12-12 05:32:04","updated":"2025-12-12 05:32:04","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/research\" title=\"Research\">Research<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to get MFA status for Users in Entra\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Research","link":"https:\/\/pariswells.com\/blog\/category\/research"},{"label":"How to get MFA status for Users in Entra","link":"https:\/\/pariswells.com\/blog\/research\/how-to-get-mfa-status-for-users-in-entra"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8690","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=8690"}],"version-history":[{"count":2,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8690\/revisions"}],"predecessor-version":[{"id":8733,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8690\/revisions\/8733"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=8690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=8690"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=8690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}