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
| Name | b2x_user_flows_user_attribute_assignments_user_attribute |
| Type | Resource |
| Id | entra_id.identity.b2x_user_flows_user_attribute_assignments_user_attribute |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
dataType | string | (string, boolean, int64, stringCollection, dateTime, unknownFutureValue) (title: identityUserFlowAttributeDataType) |
description | string | The description of the user flow attribute that's shown to the user at the time of sign up. |
displayName | string | The display name of the user flow attribute. Supports $filter (eq, ne). |
userFlowAttributeType | string | (builtIn, custom, required, unknownFutureValue) (title: identityUserFlowAttributeType) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | b2x_identity_user_flow_id, identity_user_flow_attribute_assignment_id | The 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.
| Name | Datatype | Description |
|---|---|---|
b2x_identity_user_flow_id | string | The unique identifier of b2xIdentityUserFlow |
identity_user_flow_attribute_assignment_id | string | The unique identifier of identityUserFlowAttributeAssignment |
SELECT examples
- get
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
;