Get userRegistrationDetails
Article
07/12/2023
2 contributors
Feedback
In this article
Namespace: microsoft.graph
Read the properties and relationships of a userRegistrationDetails object.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
AuditLog.Read.All
Delegated (personal Microsoft account)
Not supported.
Application
AuditLog.Read.All
HTTP request
GET /reports/authenticationMethods/userRegistrationDetails/{userId}
Optional query parameters
This method does not support the OData query parameters to help customize the response. For general information, see OData query parameters .
Name
Description
Authorization
Bearer {token}. Required.
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a userRegistrationDetails object in the response body.
Examples
Request
The following is an example of the request.
GET https://graph.microsoft.com/v1.0/reports/authenticationMethods/userRegistrationDetails/86462606-fde0-4fc4-9e0c-a20eb73e54c6
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var result = await graphClient.Reports.AuthenticationMethods.UserRegistrationDetails["{userRegistrationDetails-id}"].GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc reports authentication-methods user-registration-details get --user-registration-details-id {userRegistrationDetails-id}
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
userRegistrationDetails, err := graphClient.Reports().AuthenticationMethods().UserRegistrationDetails().ByUserRegistrationDetailsId("userRegistrationDetails-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
UserRegistrationDetails userRegistrationDetails = graphClient.reports().authenticationMethods().userRegistrationDetails("86462606-fde0-4fc4-9e0c-a20eb73e54c6")
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let userRegistrationDetails = await client.api('/reports/authenticationMethods/userRegistrationDetails/86462606-fde0-4fc4-9e0c-a20eb73e54c6')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->reports()->authenticationMethods()->userRegistrationDetails()->byUserRegistrationDetailsId('userRegistrationDetails-id')->get()->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Import-Module Microsoft.Graph.Reports
Get-MgReportAuthenticationMethodUserRegistrationDetail -UserRegistrationDetailsId $userRegistrationDetailsId
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(request_adapter)
result = await graph_client.reports.authentication_methods.user_registration_details.by_user_registration_detail_id('userRegistrationDetails-id').get()
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"id": "86462606-fde0-4fc4-9e0c-a20eb73e54c6",
"userPrincipalName": "AlexW@Contoso.com",
"userDisplayName": "Alex Wilber",
"isAdmin": false,
"isSsprRegistered": false,
"isSsprEnabled": false,
"isSsprCapable": false,
"isMfaRegistered": true,
"isMfaCapable": true,
"isPasswordlessCapable": false,
"lastUpdatedDateTime": "2023-03-13T19:15:41.6195833Z",
"methodsRegistered": [
"microsoftAuthenticatorPush",
"softwareOneTimePasscode"
],
"defaultMfaMethod": "microsoftAuthenticatorPush",
"isSystemPreferredAuthenticationMethodEnabled": true,
"systemPreferredAuthenticationMethods": [
"push"
],
"userPreferredMethodForSecondaryAuthentication": "push",
"userType": "member"
}
}