Skip to main content

b2x_user_flows_identity_providers

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

Overview

Nameb2x_user_flows_identity_providers
TypeResource
Identra_id.identity.b2x_user_flows_identity_providers

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
namestringThe display name of the identity provider. Not nullable.
clientIdstringThe client ID for the application. This is the client ID obtained when registering the application with the identity provider. Required. Not nullable.
clientSecretstringThe client secret for the application. This is the client secret obtained when registering the application with the identity provider. This is write-only. A read operation will return . Required. Not nullable.
typestringThe identity provider type is a required field. For B2B scenario: Google, Facebook. For B2C scenario: Microsoft, Google, Amazon, LinkedIn, Facebook, GitHub, Twitter, Weibo, QQ, WeChat, OpenIDConnect. Not nullable.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectb2x_identity_user_flow_id, identity_provider_idThe identity providers included in the user flow.
listselectb2x_identity_user_flow_idGet the identity providers in a b2xIdentityUserFlow object.

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_idstringThe unique identifier of identityProvider

SELECT examples

The identity providers included in the user flow.

SELECT
id,
name,
clientId,
clientSecret,
type
FROM entra_id.identity.b2x_user_flows_identity_providers
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
AND identity_provider_id = '{{ identity_provider_id }}' -- required
;