Skip to content

Latest commit

 

History

History
73 lines (56 loc) · 2.58 KB

File metadata and controls

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

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 JSON representation shows the resource type.

{
  "id" : "String",
  "totalUserCount" : 23123,
  "userRegistrationCounts" :
  [
    { "registrationStatus":"registered", "registrationCount": 23423 },
    { "registrationStatus":"enabled", "registrationCount": 4234 },
    { "registrationStatus":"capable", "registrationCount": 323 },
    { "registrationStatus":"mfaRegistered", "registrationCount": 33 }
  ]
}