Is it possible to read invition status , Sign-in details and issuer details from Azure Active directory using Graph API?

DEEPAK KUMPALA 191 Reputation points
2022-05-18T16:41:03.777+00:00

I see following details in Azure Active Directory USER page

  • Invitation accepted - Yes
  • Issuer - ExternalAzureAD
  • UserType - Guest
  • User Sign-ins

Now, How can i get it through graph API ?

What are the different options I have if I do not able to get through graph API? Can I user powershell or CLI's?

Microsoft Security | Microsoft Entra | Microsoft Entra ID
Microsoft Security | Microsoft Graph
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 119.6K Reputation points MVP Volunteer Moderator
    2022-05-18T16:56:02.42+00:00

    Those are all exposed as properties on the user object, which you can query via the /users/{userId} endpoint. In particular, you need the creationType, externalUserState, userType properties. Sign-ins you can get via the auditLogs/signIns endpoint: https://learn.microsoft.com/en-us/graph/api/signin-list?view=graph-rest-1.0&tabs=http

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.