API calls for Microsoft Azure Active Directory
Microsoft Azure Active Directory connector API calls to Microsoft Graph API for retrieval of data.
References
Authentication token
Uses the POST operation to retrieve an auth token used in other Graph API calls.
URI:
https://login.microsoftonline.com/{tenantId}/oauth2/v2.0/token
See Microsoft Graph docs for more information.
Users
Uses the GET operation to retrieve information about Azure AD users.
URI:
https://graph.microsoft.com/v1.0/users
See Microsoft Graph docs for more information.
Groups
Uses the GET operation to retrieve information about Azure AD groups.
URI:
https://graph.microsoft.com/v1.0/groups
See Microsoft Graph docs for more information.
Group membership
Uses the GET operation to retrieve information about groups of which the user is a direct member.
URI:
https://graph.microsoft.com/v1.0/users/{userId}/memberOf/microsoft.graph.group
See Microsoft Graph docs for more information.
User credential registration details
Uses the GET operation to retrieve credentialUserRegistrationDetails report. This report is only fetched if Collect user credential details report is selected when adding the connector.
URI:
https://graph.microsoft.com/beta/reports/credentialUserRegistrationDetails
See Microsoft Graph docs for more information.