credentialUserRegistrationCount resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents the current state of how many users in your organization are registered for self-service password reset and multi-factor authentication capabilities.
Methods
Method | Return Type | Description |
---|---|---|
getCredentialUserRegistrationCount | credentialUserRegistrationCount collection | Report the current state of how many users in your organization are registered for self-service password reset and multi-factor authentication (MFA) capabilities. |
Properties
Property | Type | Description |
---|---|---|
id | String | The unique identifier for the activity. Read-only. |
totalUserCount | Int64 | Provides the count of users with accountEnabled set to true in the tenant. |
userRegistrationCounts | userRegistrationCount collection | A collection of registration count and status information for users in your tenant. |
Relationships
None.
JSON representation
The following is a JSON representation of the resource.
{
"id" : "String",
"totalUserCount" : 23123,
"userRegistrationCounts" :
[
{ "registrationStatus":"registered", "registrationCount": 23423 },
{ "registrationStatus":"enabled", "registrationCount": 4234 },
{ "registrationStatus":"capable", "registrationCount": 323 },
{ "registrationStatus":"mfaRegistered", "registrationCount": 33 }
]
}
Feedback
Submit and view feedback for