Skip to content

Latest commit

 

History

History
72 lines (55 loc) · 2.56 KB

credentialuserregistrationcount.md

File metadata and controls

72 lines (55 loc) · 2.56 KB
title description ms.localizationpriority author ms.subservice doc_type
credentialUserRegistrationCount resource type
Represents the current state of how many users in your organization are registered for self-service password reset and multifactor authentication capabilities.
medium
egreenberg14
entra-monitoring-health
resourcePageType

credentialUserRegistrationCount resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the current state of how many users in your organization are registered for self-service password reset and multifactor authentication capabilities. For more information about license requirements for this feature, see Authentication Methods Activity: Permissions and licenses.

Methods

Method Return Type Description
Get credentialUserRegistrationCount collection Report the current state of how many users in your organization are registered for self-service password reset and multifactor 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 }
  ]
}