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

Represents the authentication event listeners such as Azure Logic Apps and Azure Functions that are triggered by the corresponding events in a sign-in event.

Properties

Property Type Description
eventType authenticationEventType The type of authentication event that triggered the custom authentication extension request. The possible values are: tokenIssuanceStart, pageRenderStart, unknownFutureValue.
executedListenerId String ID of the authentication event listener that was executed.
handlerResult authenticationEventHandlerResult The result from the listening client, such as an Azure Logic App and Azure Functions, of this authentication event.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.appliedAuthenticationEventListener",
  "eventType": "String",
  "executedListenerId": "String",
  "handlerResult": {
    "@odata.type": "microsoft.graph.authenticationEventHandlerResult"
  }
}