Skip to main content

b2x_user_flows_user_attribute_assignments_user_attribute

Creates, updates, deletes, gets or lists a b2x_user_flows_user_attribute_assignments_user_attribute resource.

Overview

Nameb2x_user_flows_user_attribute_assignments_user_attribute
TypeResource
Identra_id.identity.b2x_user_flows_user_attribute_assignments_user_attribute

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
dataTypestring (string, boolean, int64, stringCollection, dateTime, unknownFutureValue) (title: identityUserFlowAttributeDataType)
descriptionstringThe description of the user flow attribute that's shown to the user at the time of sign up.
displayNamestringThe display name of the user flow attribute. Supports $filter (eq, ne).
userFlowAttributeTypestring (builtIn, custom, required, unknownFutureValue) (title: identityUserFlowAttributeType)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectb2x_identity_user_flow_id, identity_user_flow_attribute_assignment_idThe user attribute that you want to add to your user flow.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
b2x_identity_user_flow_idstringThe unique identifier of b2xIdentityUserFlow
identity_user_flow_attribute_assignment_idstringThe unique identifier of identityUserFlowAttributeAssignment

SELECT examples

The user attribute that you want to add to your user flow.

SELECT
id,
dataType,
description,
displayName,
userFlowAttributeType
FROM entra_id.identity.b2x_user_flows_user_attribute_assignments_user_attribute
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
AND identity_user_flow_attribute_assignment_id = '{{ identity_user_flow_attribute_assignment_id }}' -- required
;