{"id":5070,"date":"2024-03-28T18:22:39","date_gmt":"2024-03-29T01:22:39","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=5070"},"modified":"2024-03-28T18:24:47","modified_gmt":"2024-03-29T01:24:47","slug":"how-to-export-the-last-sign-in-time-for-all-users-in-azure-ad-using-microsoft-graph","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=5070","title":{"rendered":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph"},"content":{"rendered":"\n<p>Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled or deleted. In this article, we will explain how to use Microsoft Graph to retrieve the last sign-in date time for all users in Azure AD.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"heading-prerequisites\">Prerequisites:<a href=\"https:\/\/stackoverflow.com\/collectives\/azure\/articles\/75885876\/how-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-micro#heading-prerequisites\">\u200b<\/a><\/h3>\n\n\n\n<p>To follow along with this tutorial, you will need the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An Azure AD tenant<\/li>\n\n\n\n<li>Global administrator privileges<\/li>\n\n\n\n<li>PowerShell with the Microsoft Graph PowerShell module installed.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"heading-steps-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-microsoft-graph\">Steps to Retrieve the Last Sign-In Date Time for All Users in Azure AD Using Microsoft Graph:<a href=\"https:\/\/stackoverflow.com\/collectives\/azure\/articles\/75885876\/how-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-micro#heading-steps-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-microsoft-graph\">\u200b<\/a><\/h3>\n\n\n\n<p><strong>Step 1: Connect to Microsoft Graph<\/strong><br>First, open PowerShell and connect to Microsoft Graph using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Connect-MgGraph -Scopes Directory.Read.All,AuditLog.Read.All\n<\/code><\/pre>\n\n\n\n<p><strong>Step 2: Export User Data with lastSignInDateTime to CSV<\/strong><br>Export the user data based on your requirement either for all users\/member users\/guest users, including the UserPrincipalName and Id, to a CSV file using the following command:<\/p>\n\n\n\n<p>For all users-<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-MgUser -All -Property 'UserPrincipalName','SignInActivity','Mail','DisplayName' | Select-Object @{N='UserPrincipalName';E={$_.UserPrincipalName}}, @{N='DisplayName';E={$_.DisplayName }}, @{N='LastSignInDate';E={$_.SignInActivity.LastSignInDateTime}} | Export-Csv -Path C:\\usernew1.csv -NoTypeInformation -NoClobber\n<\/code><\/pre>\n\n\n\n<p>For all member users use-<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-MgUser -All -Filter \"UserType eq 'Member'\" -Property 'UserPrincipalName','SignInActivity','Mail','DisplayName' | Select-Object @{N='UserPrincipalName';E={$_.UserPrincipalName}}, @{N='DisplayName';E={$_.DisplayName }}, @{N='LastSignInDate';E={$_.SignInActivity.LastSignInDateTime}} | Export-Csv -Path C:\\usernew1.csv -NoTypeInformation -NoClobber\n<\/code><\/pre>\n\n\n\n<p>For all guest users use-<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-MgUser -All -Filter \"UserType eq 'Guest'\" -Property 'UserPrincipalName','SignInActivity','Mail','DisplayName' | Select-Object @{N='UserPrincipalName';E={$_.UserPrincipalName}}, @{N='DisplayName';E={$_.DisplayName }}, @{N='LastSignInDate';E={$_.SignInActivity.LastSignInDateTime}} | Export-Csv -Path C:\\usernew1.csv -NoTypeInformation -NoClobber\n<\/code><\/pre>\n\n\n\n<p>Sample Output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/i.stack.imgur.com\/MVQu7.png\"><img decoding=\"async\" src=\"https:\/\/i.stack.imgur.com\/MVQu7.png\" alt=\"enter image description here\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"heading-conclusion\"><strong>Conclusion:<\/strong><a href=\"https:\/\/stackoverflow.com\/collectives\/azure\/articles\/75885876\/how-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-micro#heading-conclusion\">\u200b<\/a><\/h2>\n\n\n\n<p>In this article, we have explained how to use Microsoft Graph to retrieve the last sign-in date time for all users in Azure AD. By exporting the user data to a CSV file and looping through it to retrieve the last sign-in date time, administrators can easily track user activity and identify any inactive accounts that may need to be disabled or deleted.<\/p>\n\n\n\n<p>Ref: <a href=\"https:\/\/stackoverflow.com\/collectives\/azure\/articles\/75885876\/how-to-retrieve-the-last-sign-in-date-time-for-all-users-in-azure-ad-using-micro\">How to Retrieve the Last Sign-In Date Time for All Users in Azure AD Using Microsoft Graph &#8211; Stack Overflow<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=5070\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[1249,238,239,10,1224],"tags":[1776,1775],"class_list":["post-5070","post","type-post","status-publish","format-standard","hentry","category-azure-microsoft","category-cloud","category-azure","category-microsoft","category-powershell","tag-aad-user-export-last-sign-in-powershell","tag-how-to-export-last-sign-in-for-all-azure-users-microsoft-graph"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"aad user export last sign-in powershell,how to export last sign-in for all azure users microsoft graph,azure,cloud,microsoft 365,microsoft family,powershell\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=5070\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#article\",\"name\":\"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph | Summa Lai\",\"headline\":\"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i.stack.imgur.com\\\/MVQu7.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070\\\/#articleImage\"},\"datePublished\":\"2024-03-28T18:22:39-07:00\",\"dateModified\":\"2024-03-28T18:24:47-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#webpage\"},\"articleSection\":\"Azure, Cloud, Microsoft 365, Microsoft Family, PowerShell, AAD user Export Last Sign-In PowerShell, How to Export Last Sign-In for All Azure Users Microsoft Graph\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=238#listItem\",\"name\":\"Cloud\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=238#listItem\",\"position\":2,\"name\":\"Cloud\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=238\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=239#listItem\",\"name\":\"Microsoft 365\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=239#listItem\",\"position\":3,\"name\":\"Microsoft 365\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=239\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#listItem\",\"name\":\"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=238#listItem\",\"name\":\"Cloud\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#listItem\",\"position\":4,\"name\":\"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=239#listItem\",\"name\":\"Microsoft 365\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070\",\"name\":\"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph | Summa Lai\",\"description\":\"Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5070#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2024-03-28T18:22:39-07:00\",\"dateModified\":\"2024-03-28T18:24:47-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph | Summa Lai","description":"Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled","canonical_url":"https:\/\/SUMMALAI.COM\/?p=5070","robots":"max-image-preview:large","keywords":"aad user export last sign-in powershell,how to export last sign-in for all azure users microsoft graph,azure,cloud,microsoft 365,microsoft family,powershell","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=5070#article","name":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph | Summa Lai","headline":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i.stack.imgur.com\/MVQu7.png","@id":"https:\/\/SUMMALAI.COM\/?p=5070\/#articleImage"},"datePublished":"2024-03-28T18:22:39-07:00","dateModified":"2024-03-28T18:24:47-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=5070#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=5070#webpage"},"articleSection":"Azure, Cloud, Microsoft 365, Microsoft Family, PowerShell, AAD user Export Last Sign-In PowerShell, How to Export Last Sign-In for All Azure Users Microsoft Graph"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=5070#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=238#listItem","name":"Cloud"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=238#listItem","position":2,"name":"Cloud","item":"https:\/\/SUMMALAI.COM\/?cat=238","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=239#listItem","name":"Microsoft 365"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=239#listItem","position":3,"name":"Microsoft 365","item":"https:\/\/SUMMALAI.COM\/?cat=239","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=5070#listItem","name":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=238#listItem","name":"Cloud"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=5070#listItem","position":4,"name":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=239#listItem","name":"Microsoft 365"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=5070#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=5070#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=5070#webpage","url":"https:\/\/SUMMALAI.COM\/?p=5070","name":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph | Summa Lai","description":"Microsoft Graph is a powerful tool that allows administrators to manage their Azure AD tenant and automate tasks. One common task is to retrieve the last sign-in date time for all users in Azure AD. This information can be used to track user activity and identify any inactive accounts that may need to be disabled","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=5070#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2024-03-28T18:22:39-07:00","dateModified":"2024-03-28T18:24:47-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"5070","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-03-29 01:18:40","updated":"2024-03-29 01:24:49","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" 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:\/\/SUMMALAI.COM\/?cat=238\" title=\"Cloud\">Cloud<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=239\" title=\"Microsoft 365\">Microsoft 365<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Cloud","link":"https:\/\/SUMMALAI.COM\/?cat=238"},{"label":"Microsoft 365","link":"https:\/\/SUMMALAI.COM\/?cat=239"},{"label":"How to Export the Last Sign-In Time for All Users in Entra ID (Azure AD) Using Microsoft Graph","link":"https:\/\/SUMMALAI.COM\/?p=5070"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5070","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5070"}],"version-history":[{"count":2,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5070\/revisions"}],"predecessor-version":[{"id":5072,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5070\/revisions\/5072"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}