microsoftAuthenticatorAuthenticationMethod 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 the Microsoft Authenticator app registered to a user. Microsoft Authenticator is an authentication method.
This type inherits from the authenticationMethod resource type.
Methods
Method | Return type | Description |
---|---|---|
List | microsoftAuthenticatorAuthenticationMethod collection | Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. |
Get | microsoftAuthenticatorAuthenticationMethod | Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. |
Delete | None | Deletes a microsoftAuthenticatorAuthenticationMethod object. |
Properties
Property | Type | Description |
---|---|---|
createdDateTime | DateTimeOffset | The date and time that this app was registered. This property is null if the device isn't registered for passwordless Phone Sign-In. |
displayName | String | The name of the device on which this app is registered. |
id | String | A unique identifier for this authentication method. Inherited from authenticationMethod |
deviceTag | String | Tags containing app metadata. |
phoneAppVersion | String | Numerical version of this instance of the Authenticator app. |
clientAppName | microsoftAuthenticatorAuthenticationMethodClientAppName | The app that the user has registered to use to approve push notifications. The possible values are: microsoftAuthenticator , outlookMobile , unknownFutureValue . |
Relationships
Relationship | Type | Description |
---|---|---|
device | device | The registered device on which Microsoft Authenticator resides. This property is null if the device isn't registered for passwordless Phone Sign-In. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.microsoftAuthenticatorAuthenticationMethod",
"id": "String (Identifier)",
"displayName": "String",
"deviceTag": "String",
"phoneAppVersion": "String",
"createdDateTime": "DateTimeOffset",
"clientAppName": "microsoftAuthenticator"
}