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

A listener for when a token is about to be issued to your application.

Inherits from authenticationEventListener.

Methods

Method Return type Description
List authenticationEventListeners authenticationEventListener collection Retrieve a list of the following object types derived from authenticationEventListener:
  • onTokenIssuanceStartListener
  • onInteractiveAuthFlowStartListener
  • onAuthenticationMethodLoadStartListener
  • onAttributeCollectionListener
  • onUserCreateStartListener
  • onAttributeCollectionStartListener
  • onAttributeCollectionSubmitListener
  • Create authenticationEventListener authenticationEventListener Create a new onTokenIssuanceStartListener object type. The type can be one of the following subtypes derived from authenticationEventListener:
  • onTokenIssuanceStartListener
  • onInteractiveAuthFlowStartListener
  • onAuthenticationMethodLoadStartListener
  • onAttributeCollectionListener
  • onUserCreateStartListener
  • onAttributeCollectionStartListener
  • onAttributeCollectionSubmitListener
  • Get authenticationEventListener authenticationEventListener Read the properties and relationships of an onTokenIssuanceStartListener object type. The type can be one of the following subtypes derived from authenticationEventListener:
  • onTokenIssuanceStartListener
  • onInteractiveAuthFlowStartListener
  • onAuthenticationMethodLoadStartListener
  • onAttributeCollectionListener
  • onUserCreateStartListener
  • onAttributeCollectionStartListener
  • onAttributeCollectionSubmitListener
  • Update authenticationEventListener None Update the properties of an onTokenIssuanceStartListener object type. The type can be one of the following subtypes derived from authenticationEventListener:
  • onTokenIssuanceStartListener
  • onInteractiveAuthFlowStartListener
  • onAuthenticationMethodLoadStartListener
  • onAttributeCollectionListener
  • onUserCreateStartListener
  • onAttributeCollectionStartListener
  • onAttributeCollectionSubmitListener
  • Delete authenticationEventListener None Delete an onTokenIssuanceStartListener object type. The type can be one of the following subtypes derived from authenticationEventListener:
  • onTokenIssuanceStartListener
  • onInteractiveAuthFlowStartListener
  • onAuthenticationMethodLoadStartListener
  • onAttributeCollectionListener
  • onUserCreateStartListener
  • onAttributeCollectionStartListener
  • onAttributeCollectionSubmitListener
  • Properties

    Property Type Description
    authenticationEventsFlowId String The identifier of the authenticationEventsFlow. Inherited from authenticationEventListener.
    conditions authenticationConditions The conditions on which onTokenIssuanceStartListener should trigger. Inherited from authenticationEventListener.
    handler onTokenIssuanceStartHandler The handler to invoke when conditions are met for this onTokenIssuanceStartListener.
    id String Identifier for the onTokenIssuanceStartListener. Inherited from entity.
    priority Int32 The priority of this handler. Priority should be set to 500 for onTokenIssuanceStartListeners. Inherited from authenticationEventListener.

    Relationships

    None.

    JSON representation

    The following JSON representation shows the resource type.

    {
      "@odata.type": "#microsoft.graph.onTokenIssuanceStartListener",
      "id": "String (identifier)",
      "priority": "Integer",
      "conditions": {
        "@odata.type": "microsoft.graph.authenticationConditions"
      },
      "tags": [
        {
          "@odata.type": "microsoft.graph.keyValuePair"
        }
      ],
      "authenticationEventsFlowId": "String",
      "handler": {
        "@odata.type": "microsoft.graph.onTokenIssuanceStartHandler"
      }
    }