Skip to main content

b2x_user_flows_api_connector_configuration

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

Overview

Nameb2x_user_flows_api_connector_configuration
TypeResource
Identra_id.identity.b2x_user_flows_api_connector_configuration

Fields

The following fields are returned by SELECT queries:

Entity result.

NameDatatypeDescription
postAttributeCollectionobject(opaque JSON object) (x-ms-discriminator-value: #microsoft.graph.identityApiConnector, title: entity)
postFederationSignupobject(opaque JSON object) (x-ms-discriminator-value: #microsoft.graph.identityApiConnector, title: entity)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectb2x_identity_user_flow_idGet the apiConnectorConfiguration property in a b2xIdentityUserFlow to detail the API connectors enabled for the user flow.
get_post_attribute_collectionexecb2x_identity_user_flow_id
update_post_attribute_collectionexecb2x_identity_user_flow_id
delete_post_attribute_collectionexecb2x_identity_user_flow_idIf-Match
get_post_federation_signupexecb2x_identity_user_flow_id
update_post_federation_signupexecb2x_identity_user_flow_id
delete_post_federation_signupexecb2x_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
If-MatchstringETag

SELECT examples

Get the apiConnectorConfiguration property in a b2xIdentityUserFlow to detail the API connectors enabled for the user flow.

SELECT
postAttributeCollection,
postFederationSignup
FROM entra_id.identity.b2x_user_flows_api_connector_configuration
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
;

Lifecycle Methods

Retrieved navigation property

EXEC entra_id.identity.b2x_user_flows_api_connector_configuration.get_post_attribute_collection
@b2x_identity_user_flow_id='{{ b2x_identity_user_flow_id }}' --required,
@$select='{{ $select }}',
@$expand='{{ $expand }}'
;