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-b2c/manage-user-accounts-graph-api.md
+26-4Lines changed: 26 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ manager: celestedg
9
9
ms.service: active-directory
10
10
ms.workload: identity
11
11
ms.topic: conceptual
12
-
ms.date: 02/14/2020
12
+
ms.date: 03/16/2020
13
13
ms.author: mimart
14
14
ms.subservice: B2C
15
15
---
@@ -60,6 +60,28 @@ In the Microsoft Graph API, both local and federated identities are stored in th
60
60
|issuer|string|Specifies the issuer of the identity. For local accounts (where **signInType** is not `federated`), this property is the local B2C tenant default domain name, for example `contoso.onmicrosoft.com`. For social identity (where **signInType** is `federated`) the value is the name of the issuer, for example `facebook.com`|
61
61
|issuerAssignedId|string|Specifies the unique identifier assigned to the user by the issuer. The combination of **issuer** and **issuerAssignedId** must be unique within your tenant. For local account, when **signInType** is set to `emailAddress` or `userName`, it represents the sign-in name for the user.<br>When **signInType** is set to: <ul><li>`emailAddress` (or starts with `emailAddress` like `emailAddress1`) **issuerAssignedId** must be a valid email address</li><li>`userName` (or any other value), **issuerAssignedId** must be a valid [local part of an email address](https://tools.ietf.org/html/rfc3696#section-3)</li><li>`federated`, **issuerAssignedId** represents the federated account unique identifier</li></ul>|
62
62
63
+
The following **Identities** property, with a local account identity with a sign-in name, an email address as sign-in, and with a social identity.
For federated identities, depending on the identity provider, the **issuerAssignedId** is a unique value for a given user per application or development account. Configure the Azure AD B2C policy with the same application ID that was previously assigned by the social provider or another application within the same development account.
64
86
65
87
### Password profile property
@@ -116,9 +138,9 @@ After you've obtained the code sample, configure it for your environment and the
116
138
```
117
139
1. Run the application with the `dotnet` command:
118
140
119
-
```console
120
-
dotnet bin/Debug/netcoreapp3.0/b2c-ms-graph.dll
121
-
```
141
+
```console
142
+
dotnet bin/Debug/netcoreapp3.0/b2c-ms-graph.dll
143
+
```
122
144
123
145
The application displays a list of commands you can execute. For example, get all users, get a single user, delete a user, update a user's password, and bulk import.
0 commit comments