emailAuthenticationMethod resource type

Namespace: microsoft.graph

Represents an email address registered to a user. Email as an authentication method is available only for self-service password reset (SSPR). Users may only have one email authentication method.

This is a derived type that inherits from the authenticationMethod resource type.

Methods

Method Return type Description
List emailMethods emailAuthenticationMethod collection Retrieve a list of a user's email authentication methods. Users may only have one email authentication method.
Create emailMethod emailAuthenticationMethod Create a user's emailAuthenticationMethod object.
Get emailAuthenticationMethod emailAuthenticationMethod Retrieve the properties of the user's emailAuthenticationMethod object.
Update emailAuthenticationMethod None Update the properties of a user's emailAuthenticationMethod object.
Delete emailAuthenticationMethod None Delete a user's emailAuthenticationMethod object.

Properties

Property Type Description
emailAddress String The email address registered to this user.
id String The identifier of the email address registered to this user.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

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