softwareOathAuthenticationMethod 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.

A representation of a software OATH token registered to a user. A software OATH token is a software-based number generator that uses the OATH Time-Based One Time Password (TOTP) standard for multi-factor authentication. This API will not return Microsoft Authenticator authentication method entities, though it will return an entity if Microsoft Authenticator was set up via the third-party software authenticator flow.

Methods

Method Return type Description
List softwareOathAuthenticationMethod collection Retrieve a list of a user's softwareOathAuthenticationMethod objects and their properties.
Get softwareOathAuthenticationMethod Read the properties of a user's softwareOathAuthenticationMethod object.
Delete None Delete a user's softwareOathAuthenticationMethod object.

Properties

Property Type Description
id String The authentication method identifier.
secretKey String The secret key of the method. Always returns null.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.softwareOathAuthenticationMethod",
  "id": "String (identifier)",
  "secretKey": "String"
}