Edit

Share via


qrCodePinAuthenticationMethodConfiguration 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 QR code authentication method policy that defines configuration settings and target users or groups who are enabled to use QR code authentication method.

Inherits from authenticationMethodConfiguration.

Methods

Method Return type Description
Get qrCodePinAuthenticationMethodConfiguration Read the properties and relationships of a qrCodePinAuthenticationMethodConfiguration object.
Update qrCodePinAuthenticationMethodConfiguration Update the properties of a qrCodePinAuthenticationMethodConfiguration object.
Delete None Delete a qrCodePinAuthenticationMethodConfiguration object.

Properties

Property Type Description
excludeTargets excludeTarget collection Groups of users that are excluded from the policy. Inherited from authenticationMethodConfiguration.
id String The identifier for the authentication method policy. The value is always QRCodePin. Inherits from entity
pinLength Int32 A memorized alphanumeric secret code. Minimum length is 8 as per NIST 800-63B and can't be longer than 20 digits.
standardQRCodeLifetimeInDays Int32 The maximum value is 395 days and the default value is 365 days.
state authenticationMethodState Inherited from authenticationMethodConfiguration. The possible values are: enabled, disabled.

Relationships

Relationship Type Description
includeTargets authenticationMethodTarget collection A collection of groups that are enabled to use the authentication method.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.qrCodePinAuthenticationMethodConfiguration",
  "id": "String (identifier)",
  "state": "String",
  "excludeTargets": [
    {
      "@odata.type": "microsoft.graph.excludeTarget"
    }
  ],
  "standardQRCodeLifetimeInDays": "Integer",
  "pinLength": "Integer"
}