Create authenticationEventListener

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.

Create a new authenticationEventListener object. You can create one of the following subtypes that are derived from authenticationEventListener.

This API is supported in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) EventListener.ReadWrite.All
Delegated (personal Microsoft account) Not supported.
Application EventListener.ReadWrite.All

HTTP request

POST /identity/authenticationEventListeners

Request headers

Name Description
Authorization Bearer {token}. Required.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the authenticationEventListener object.

You can specify the following properties when creating an authenticationEventListener. You must specify the @odata.type property to specify the type of authenticationEventListener to create; for example, @odata.type": "microsoft.graph.onTokenIssuanceStartListener".

Property Type Description
authenticationEventsFlowId String The identifier of the authentication events flow. Optional.
conditions authenticationConditions The conditions on which this authenticationEventListener should trigger. Optional.
handler onAttributeCollectionHandler The handler to invoke when conditions are met. Can be set for the onAttributeCollectionListener listener type.
handler onAuthenticationMethodLoadStartHandler The handler to invoke when conditions are met. Can be set for the onAuthenticationMethodLoadStartListener listener type.
handler onInteractiveAuthFlowStartHandler The handler to invoke when conditions are met. Can be set for the onInteractiveAuthFlowStartListener listener type.
handler onTokenIssuanceStartHandler The handler to invoke when conditions are met. Can be set for the onTokenIssuanceStartListener listener type.
handler onUserCreateStartHandler The handler to invoke when conditions are met. Can be set for the onUserCreateStartListener listener type.
priority Int32 The priority of this handler. Between 0 (lower priority) and 1000 (higher priority). Required.

Response

If successful, this method returns a 201 Created response code and an authenticationEventListener object in the response body. The @odata.type property specifies the type of the created object.

Examples

Request

The following is an example of a request to create a onTokenIssuanceStartListener.

POST https://graph.microsoft.com/beta/identity/authenticationEventListeners
Content-Type: application/json
Content-length: 312

{
    "@odata.type": "#microsoft.graph.onTokenIssuanceStartListener",
    "conditions": {
        "applications": {
            "includeAllApplications": false,
            "includeApplications": [
                {
                    "appId": "a13d0fc1-04ab-4ede-b215-63de0174cbb4"
                }
            ]
        }
    },
    "priority": 500,
    "handler": {
        "@odata.type": "#microsoft.graph.onTokenIssuanceStartCustomExtensionHandler",
        "customExtension": {
            "id": "6fc5012e-7665-43d6-9708-4370863f4e6e"
        }
    }
}

Response

The following is an example of the response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 201 Created
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#identity/authenticationEventListeners/$entity",
    "@odata.type": "#microsoft.graph.onTokenIssuanceStartListener",
    "id": "990d94e5-cc8f-4c4b-97b4-27e2678aac28",
    "priority": 500,
    "authenticationEventsFlowId": null,
    "conditions": {
        "applications": {
            "includeAllApplications": false,
            "includeApplications": [
                {
                    "appId": "a13d0fc1-04ab-4ede-b215-63de0174cbb4"
                }
            ]
        }
    },
    "handler": {
        "@odata.type": "#microsoft.graph.onTokenIssuanceStartCustomExtensionHandler",
        "customExtension": {
            "id": "6fc5012e-7665-43d6-9708-4370863f4e6e"
        }
    }
}