Skip to main content

b2x_user_flows_user_flow_identity_providers

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

Overview

Nameb2x_user_flows_user_flow_identity_providers
TypeResource
Identra_id.identity.b2x_user_flows_user_flow_identity_providers

Fields

The following fields are returned by SELECT queries:

Retrieved collection

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
displayNamestringThe display name of the identity provider.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectb2x_identity_user_flow_id
add_refinsertb2x_identity_user_flow_id
remove_refdeleteb2x_identity_user_flow_id, identity_provider_base_idIf-Match
remove_ref_2deleteb2x_identity_user_flow_idIf-Match

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_provider_base_idstringThe unique identifier of identityProviderBase
If-MatchstringETag

SELECT examples

Retrieved collection

SELECT
id,
displayName
FROM entra_id.identity.b2x_user_flows_user_flow_identity_providers
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity.b2x_user_flows_user_flow_identity_providers (
directoryObjectId,
b2x_identity_user_flow_id
)
SELECT
'{{ directoryObjectId }}',
'{{ b2x_identity_user_flow_id }}'
;

DELETE examples

No description available.

DELETE FROM entra_id.identity.b2x_user_flows_user_flow_identity_providers
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' --required
AND identity_provider_base_id = '{{ identity_provider_base_id }}' --required
AND If-Match = '{{ If-Match }}'
;