onAuthenticationMethodLoadStartListener resource type

Namespace: microsoft.graph

A listener for when authentication methods are ready to be presented to the user in an authentication flow. If this listener isn't specified, the default option is email one time passcode (OTP). May be part of an authenticationEventsFlow.

Inherits from authenticationEventListener.

Properties

Property Type Description
id String Required. Inherited from entity.
conditions authenticationConditions Required. Inherited from authenticationEventListener.
authenticationEventsFlowId String Inherited from authenticationEventListener.
handler onAuthenticationMethodLoadStartHandler Required. Configuration for what to invoke if the event resolves to this listener. This lets us define potential handler configurations per-event.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.onAuthenticationMethodLoadStartListener",
  "id": "String (identifier)",
  "conditions": {
    "@odata.type": "microsoft.graph.authenticationConditions"
  },
  "authenticationEventsFlowId": "String",
  "handler": {
    "@odata.type": "microsoft.graph.onAuthenticationMethodLoadStartHandler"
  }
}