편집

다음을 통해 공유


externalUsersSelfServiceSignUpEventsFlow resource type

Namespace: microsoft.graph

Represents a self-service user flow for external identities within a Microsoft Entra External ID in workforce or external tenants. A user flow is implemented as a multi-event policy executing the specific events at specific points of user interaction.

Inherits from authenticationEventsFlow.

Methods

None.

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

Properties

Property Type Description
id String The unique identifier for the entity. Read-only. Inherited from entity.
displayName String Required. The display name for the events policy. Must be unique. Inherited from authenticationEventsFlow.
description String Optional. The description of the events policy. Inherited from authenticationEventsFlow.
conditions authenticationConditions Optional. The conditions representing the context of the authentication request which is used to decide whether the events policy is invoked. Inherited from authenticationEventsFlow.
onInteractiveAuthFlowStart onInteractiveAuthFlowStartHandler Required. The configuration for what to invoke when an authentication flow is ready to be initiated.
onAttributeCollection onAttributeCollectionHandler The configuration for what to invoke when attributes are ready to be collected from the user.
onAuthenticationMethodLoadStart onAuthenticationMethodLoadStartHandler Required. The configuration for what to invoke when authentication methods are ready to be presented to the user. Must have at least one identity provider linked.
onUserCreateStart onUserCreateStartHandler The configuration for what to invoke during user creation.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.externalUsersSelfServiceSignUpEventsFlow",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "conditions": {
    "@odata.type": "microsoft.graph.authenticationConditions"
  },
  "onInteractiveAuthFlowStart": {
    "@odata.type": "microsoft.graph.onInteractiveAuthFlowStartHandler"
  },
  "onAuthenticationMethodLoadStart": {
    "@odata.type": "microsoft.graph.onAuthenticationMethodLoadStartHandler"
  },
  "onAttributeCollection": {
    "@odata.type": "microsoft.graph.onAttributeCollectionHandler"
  },
  "onUserCreateStart": {
    "@odata.type": "microsoft.graph.onUserCreateStartHandler"
  }
}