Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 2.47 KB

onauthenticationmethodloadstartlistener.md

File metadata and controls

61 lines (50 loc) · 2.47 KB
title description author ms.localizationpriority ms.subservice doc_type
onAuthenticationMethodLoadStartListener resource type
Listener for the onAuthenticationMethodLoadStart event
nanguil
medium
entra-sign-in
resourcePageType

onAuthenticationMethodLoadStartListener resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Used for configuring what authentication methods are enabled for the authentication flow as defined in the onAuthenticationMethodLoadStart event in an externalUsersSelfServiceSignUpEventsFlow user flow type. If this listener isn't specified, the default option is email one time passcode (OTP).

Inherits from authenticationEventListener.

Methods

None.

For the list of API operations for managing this resource type, see the authenticationEventListener resource type.

Properties

Property Type Description
id String Required. Inherited from entity.
conditions authenticationConditions Required. Inherited from authenticationEventListener.
priority Int32 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)",
  "priority": "Integer",
  "conditions": {
    "@odata.type": "microsoft.graph.authenticationConditions"
  },
  "authenticationEventsFlowId": "String",
  "handler": {
    "@odata.type": "microsoft.graph.onAuthenticationMethodLoadStartHandler"
  }
}