userFlowLanguageConfiguration resource type

Namespace: microsoft.graph

Allows a user flow to support the use of multiple languages.

For Microsoft Entra user flows, you can only use the built-in languages provided by Microsoft. User flows for Microsoft Entra ID support defining the language and strings shown to users as they go through the journeys you configure with your user flows.

Methods

Method Return type Description
Get userFlowLanguageConfiguration userFlowLanguageConfiguration Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow.
List defaultPages userFlowLanguagePage collection Get the userFlowLanguagePage resources from the defaultPages navigation property. Represents the default user journey in a user flow.
List overridesPages userFlowLanguagePage collection Get the userFlowLanguagePage resources from the overridesPages navigation property. Represents a custom experience for a user journey in a user flow.

Properties

Property Type Description
displayName String The language name to display. This property is read-only.
id String The identifier of the language. This field is Language ID tag RFC 5646 compliant and must be a documented Language ID.
isEnabled Boolean Indicates whether the language is enabled within the user flow.

Relationships

Relationship Type Description
defaultPages userFlowLanguagePage collection Collection of pages with the default content to display in a user flow for a specified language. This collection doesn't allow any kind of modification.
overridesPages userFlowLanguagePage collection Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.userFlowLanguageConfiguration",
  "id": "String (identifier)",
  "isEnabled": "Boolean",
  "displayName": "String"
}