authenticationEventListener resource type

Namespace: microsoft.graph

To customize the authentication process, listeners can be registered which specify that for some event, on some conditions, some custom logic can be invoked. This is an abstract type from which the following types are derived.

Methods

Method Return type Description
List authenticationEventListener objects authenticationEventListener collection Get a list of the authenticationEventListener objects and their properties.
Create authenticationEventListener authenticationEventListener Create a new authenticationEventListener object.
Get authenticationEventListener authenticationEventListener Read the properties and relationships of an authenticationEventListener object.
Update authenticationEventListener authenticationEventListener Update the properties of an authenticationEventListener object.
Delete authenticationEventListener None Delete an authenticationEventListener object.

Properties

Property Type Description
conditions authenticationConditions The conditions on which this authenticationEventListener should trigger.
id String Identifier for this authenticationEventListener. Inherited from entity.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.authenticationEventListener",
  "id": "String (identifier)",
  "conditions": {
    "@odata.type": "microsoft.graph.authenticationConditions"
  },
}