b2x_user_flows_identity_providers
Creates, updates, deletes, gets or lists a b2x_user_flows_identity_providers resource.
Overview
| Name | b2x_user_flows_identity_providers |
| Type | Resource |
| Id | entra_id.identity.b2x_user_flows_identity_providers |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | The display name of the identity provider. Not nullable. |
clientId | string | The client ID for the application. This is the client ID obtained when registering the application with the identity provider. Required. Not nullable. |
clientSecret | string | The 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. |
type | string | The 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. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | The display name of the identity provider. Not nullable. |
clientId | string | The client ID for the application. This is the client ID obtained when registering the application with the identity provider. Required. Not nullable. |
clientSecret | string | The 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. |
type | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | b2x_identity_user_flow_id, identity_provider_id | The identity providers included in the user flow. | |
list | select | b2x_identity_user_flow_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
b2x_identity_user_flow_id | string | The unique identifier of b2xIdentityUserFlow |
identity_provider_id | string | The unique identifier of identityProvider |
SELECT examples
- get
- list
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
;
Get the identity providers in a b2xIdentityUserFlow object.
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
;