| title | authenticationMethodsRoot: userSignInsByAuthMethodSummary |
|---|---|
| description | Gets a list of the number of successful sign ins for each authentication method that is available. |
| ms.date | 07/23/2025 |
| author | egreenberg14 |
| ms.localizationpriority | medium |
| ms.subservice | entra-monitoring-health |
| doc_type | apiPageType |
| ms.custom | sfi-ga-nochange |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Gets a list of the number of successful sign ins for each authentication method that is available.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
[!INCLUDE rbac-reports-registration-usage-apis]
GET /reports/authenticationMethods/userSignInsByAuthMethodSummary(period='{period}')In the request URL, provide the following query parameters with values.
| Parameter | Type | Description |
|---|---|---|
| period | aggregationPeriod | The aggregation window to get summary for. The possible values are: d1 (1 day), d7 (7 days), d30 (30 days). |
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this function returns a 200 OK response code and a userSignInUsageByAuthMethodActivity collection in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/authenticationMethods/userSignInsByAuthMethodSummary(period='d1')[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "password",
"successActivityCount": 1470
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "sms",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "smsSignIn",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "mobilePhone",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "alternateMobilePhone",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "officePhone",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "microsoftAuthenticatorPush",
"successActivityCount": 8
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "oneTimePasscode",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "microsoftAuthenticatorPasswordless",
"successActivityCount": 504
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "windowsHelloForBusiness",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "fido2SecurityKey",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "temporaryAccessPass",
"successActivityCount": 90
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "macOsSecureEnclaveKey",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "passKeyDeviceBound",
"successActivityCount": 843
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "passKeySynced",
"successActivityCount": 0
},
{
"@odata.type": "#microsoft.graph.userSignInUsageByAuthMethodActivity",
"authenticationMethod": "externalAuthMethod",
"successActivityCount": 0
}
]
}