IdentityUserFlow.Read.All
Allows the app to read your organization's user flows, without a signed-in user.
Permission Details
Read all identity user flows
Allows the app to read your organization's user flows, without a signed-in user.
1b0c317f-dd31-4305-9932-259a8b6e8099
Read all identity user flows
Allows the app to read your organization's user flows, on behalf of the signed-in user.
2903d63d-4611-4d43-99ce-a33f3f52e343
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
id |
String |
The identifier of the user flow. The prefix of B2C1 is added to the value that you provide. |
userFlowType |
userFlowType |
The possible values are: signUp, signIn, signUpOrSignIn, passwordReset, profileUpdate, resourceOwner, unknownFutureValue. |
userFlowTypeVersion |
Single |
This is the version of the user flow type. Each user flow type can have different possible versions such as 1, 1.1 or 2. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"id": "String (identifier)",
"userFlowType": "string",
"userFlowTypeVersion": "Single"
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
userFlowType |
userFlowType |
Related userFlowType data exposed by this resource. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Identity.B2xUserFlows["{b2xIdentityUserFlow-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let b2xIdentityUserFlow = await client.api('/identity/b2xUserFlows/B2X_1_PartnerSignUp')
.get();
Import-Module Microsoft.Graph.Identity.SignIns
Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.identity.b2x_user_flows.by_b2x_identity_user_flow_id('b2xIdentityUserFlow-id').get()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions or delegated permissions and search for IdentityUserFlow.Read.All
Grant Admin Consent
Application permissions always require admin consent.