Skip to main content

b2x_user_flows_languages_overrides_pages

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

Overview

Nameb2x_user_flows_languages_overrides_pages
TypeResource
Identra_id.identity.b2x_user_flows_languages_overrides_pages

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectb2x_identity_user_flow_id, user_flow_language_configuration_id, user_flow_language_page_idCollection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).
listselectb2x_identity_user_flow_id, user_flow_language_configuration_idGet the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow.
insertinsertb2x_identity_user_flow_id, user_flow_language_configuration_id
updateupdateb2x_identity_user_flow_id, user_flow_language_configuration_id, user_flow_language_page_idUpdate the values in an userFlowLanguagePage object. You may only update the values in an overridesPage, which is used to customize the values shown to a user during a user journey defined by a user flow.
deletedeleteb2x_identity_user_flow_id, user_flow_language_configuration_id, user_flow_language_page_idIf-MatchDeletes the values in an userFlowLanguagePage object. You may only delete the values in an overridesPage, which is used to customize the values shown to a user during a user journey defined by a user flow.

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
user_flow_language_configuration_idstringThe unique identifier of userFlowLanguageConfiguration
user_flow_language_page_idstringThe unique identifier of userFlowLanguagePage
If-MatchstringETag

SELECT examples

Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).

SELECT
id
FROM entra_id.identity.b2x_user_flows_languages_overrides_pages
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' -- required
AND user_flow_language_configuration_id = '{{ user_flow_language_configuration_id }}' -- required
AND user_flow_language_page_id = '{{ user_flow_language_page_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity.b2x_user_flows_languages_overrides_pages (
id,
b2x_identity_user_flow_id,
user_flow_language_configuration_id
)
SELECT
'{{ id }}',
'{{ b2x_identity_user_flow_id }}',
'{{ user_flow_language_configuration_id }}'
RETURNING
id
;

UPDATE examples

Update the values in an userFlowLanguagePage object. You may only update the values in an overridesPage, which is used to customize the values shown to a user during a user journey defined by a user flow.

UPDATE entra_id.identity.b2x_user_flows_languages_overrides_pages
SET
id = '{{ id }}',
WHERE
b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' --required
AND user_flow_language_configuration_id = '{{ user_flow_language_configuration_id }}' --required
AND user_flow_language_page_id = '{{ user_flow_language_page_id }}' --required
RETURNING
id,
@odata.type;

DELETE examples

Deletes the values in an userFlowLanguagePage object. You may only delete the values in an overridesPage, which is used to customize the values shown to a user during a user journey defined by a user flow.

DELETE FROM entra_id.identity.b2x_user_flows_languages_overrides_pages
WHERE b2x_identity_user_flow_id = '{{ b2x_identity_user_flow_id }}' --required
AND user_flow_language_configuration_id = '{{ user_flow_language_configuration_id }}' --required
AND user_flow_language_page_id = '{{ user_flow_language_page_id }}' --required
AND If-Match = '{{ If-Match }}'
;