Skip to main content

user_flow_attributes

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

Overview

Nameuser_flow_attributes
TypeResource
Identra_id.identity.user_flow_attributes

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
getselectidentity_user_flow_attribute_idRetrieve the properties and relationships of a identityUserFlowAttribute object.
listselectRetrieve a list of identityUserFlowAttribute objects.
insertinsertCreate a new custom identityUserFlowAttribute object.
updateupdateidentity_user_flow_attribute_idUpdate the properties of a custom identityUserFlowAttribute object.
deletedeleteidentity_user_flow_attribute_idIf-MatchDelete a custom identityUserFlowAttribute.

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
identity_user_flow_attribute_idstringThe unique identifier of identityUserFlowAttribute
If-MatchstringETag

SELECT examples

Retrieve the properties and relationships of a identityUserFlowAttribute object.

SELECT
id,
dataType,
description,
displayName,
userFlowAttributeType
FROM entra_id.identity.user_flow_attributes
WHERE identity_user_flow_attribute_id = '{{ identity_user_flow_attribute_id }}' -- required
;

INSERT examples

Create a new custom identityUserFlowAttribute object.

INSERT INTO entra_id.identity.user_flow_attributes (
id,
dataType,
description,
displayName,
userFlowAttributeType
)
SELECT
'{{ id }}',
'{{ dataType }}',
'{{ description }}',
'{{ displayName }}',
'{{ userFlowAttributeType }}'
RETURNING
id,
dataType,
description,
displayName,
userFlowAttributeType
;

UPDATE examples

Update the properties of a custom identityUserFlowAttribute object.

UPDATE entra_id.identity.user_flow_attributes
SET
id = '{{ id }}',
dataType = '{{ dataType }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
userFlowAttributeType = '{{ userFlowAttributeType }}'
WHERE
identity_user_flow_attribute_id = '{{ identity_user_flow_attribute_id }}' --required
RETURNING
id,
dataType,
description,
displayName,
userFlowAttributeType;

DELETE examples

Delete a custom identityUserFlowAttribute.

DELETE FROM entra_id.identity.user_flow_attributes
WHERE identity_user_flow_attribute_id = '{{ identity_user_flow_attribute_id }}' --required
AND If-Match = '{{ If-Match }}'
;