identityUserFlowAttribute resource type
Namespace: microsoft.graph
Represents attributes that can be added to a user flow in Microsoft Entra External ID in workforce and external tenants, and in Azure AD B2C tenants.
Configuring user flow attributes in your tenant allows you to collect information about an external user during sign-up. You can choose to collect a built-in set of attribute; for example, Given Name, Surname, City, and Postal Code; or you can configure custom user flow attributes. Custom user flow attributes are an abstraction over directory extensions.
identityBuiltInUserFlowAttributes and identityCustomUserFlowAttributes both inherit from this base type.
Methods
Method | Return Type | Description |
---|---|---|
List | identityUserFlowAttributes collection | Retrieve all built-in and custom user flow attributes. |
Create | identityUserFlowAttribute | Create a new custom user flow attribute. |
Get | identityUserFlowAttribute | Retrieve properties of a user flow attribute. |
Update | None | Update a custom user flow attribute. |
Delete | None | Delete a custom user flow attribute. |
Properties
Property | Type | Description |
---|---|---|
dataType | identityUserFlowAttributeDataType | The data type of the user flow attribute. Can't be modified after the custom user flow attribute is created. The supported values for dataType are: string , boolean , int64 , stringCollection , dateTime , unknownFutureValue . Supports $filter (eq , ne ). |
displayName | String | The display name of the user flow attribute. Supports $filter (eq , ne ). |
description | String | The description of the user flow attribute that's shown to the user at the time of sign up. |
id | String | The identifier of the user flow attribute. Read-only. Supports $filter (eq , ne ). |
userFlowAttributeType | identityUserFlowAttributeType | The type of the user flow attribute. Read-only. Depending on the type of attribute, the values for this property are builtIn , custom , required , unknownFutureValue . Supports $filter (eq , ne ). |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.identityUserFlowAttribute",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"userFlowAttributeType": "String",
"dataType": "String"
}