You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/how-to-define-custom-attributes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ If your application relies on certain built-in or custom user attributes, you ca
49
49
50
50
1. Select **Create**. The custom attribute is now available in the list of user attributes and can be [added to your user flows](#include-custom-attributes-in-a-sign-up-flow).
51
51
52
-
### About referencing custom attributes
52
+
### Referencing custom attributes
53
53
54
54
The custom attributes you create are added to the *b2c-extensions-app* registered in your customer tenant. If you want to call a custom attribute from an application or manage it via Microsoft Graph, use the naming convention `extension_<b2c-extensions-app-id>_<custom-attribute-name>` where:
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/how-to-user-flow-sign-up-sign-in-customers.md
+30-1Lines changed: 30 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
8
8
ms.workload: identity
9
9
ms.subservice: ciam
10
10
ms.topic: how-to
11
-
ms.date: 07/12/2023
11
+
ms.date: 09/04/2023
12
12
ms.author: mimart
13
13
ms.custom: it-pro
14
14
@@ -89,6 +89,35 @@ You can choose the order in which the attributes are displayed on the sign-up pa
89
89
90
90
1. Select **Save**.
91
91
92
+
## Disable sign-up in a sign-up and sign-in user flow
93
+
94
+
If you want your customer users to only sign in and not sign up, you can disable sign-up experience in your user flow by using [Microsoft Graph API](microsoft-graph-operations.md). You need to know the ID of the user flow that you want whose sign-up you want to disable. You can't read the user flow ID from the Microsoft Entra Admin center, but you can retrieve it via Microsoft Graph API if you know the app associated with it.
95
+
96
+
1. Read the application ID associated with the user flow:
97
+
1. Browse to **Identity > External Identities > User flows**.
98
+
1. From the list, select your user flow.
99
+
1. In the left menu, under **Use**, select **Applications**.
100
+
1. From the list, under **Application (client) ID** column, copy the Application (client) ID.
101
+
102
+
1. Identify the ID of the user flow whose sign-up you want to disable. To do so, [List the user flow associated with the specific application](/graph/api/identitycontainer-list-authenticationeventsflows?#example-4-list-user-flow-associated-with-specific-application-id). This's a Microsoft Graph API, which requires you to know the application ID you obtained from the previous step.
103
+
104
+
1.[Update your user flow](/graph/api/authenticationeventsflow-update) to disable sign-up.
Replace `{user-flow-id}` with the user flow ID that you obtained in the previous step. Notice the `isSignUpAllowed` parameter is set to *false*. To re-enable sign-up, make a call to the Microsoft Graph API endpoint, but set the `isSignUpAllowed` parameter to *true*.
120
+
92
121
## Next steps
93
122
94
123
- [Add your application to the user flow](how-to-user-flow-add-application.md)
0 commit comments