identityProviderBase resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents identity providers with External Identities for both Microsoft Entra ID and Azure AD B2C tenants.
For Microsoft Entra B2B scenarios in a Microsoft Entra directory, the identity provider can be a socialIdentityProvider or a builtinIdentityProvider, both of which inherit from the identityProviderBase resource type.
Configuring an identity provider in your Microsoft Entra directory enables new Microsoft Entra B2B guest scenarios. For example, an organization has resources in Microsoft 365 that need to be shared with a Gmail user. The Gmail user will use their Google account credentials to authenticate and access the documents.
In an Azure AD B2C directory, the identity provider type can be a socialIdentityProvider, openIdConnectIdentityProvider, or an appleManagedIdentityProvider, all which inherit from the identityProviderBase resource type.
Configuring an identity provider in your Azure AD B2C directory enables users to sign up and sign in using a social account or a custom OpenID Connect supported provider in an application. For example, an application can use Azure AD B2C to allow users to sign up for the service using a Facebook account or their own custom identity provider that complies with OIDC protocol.
Methods
Method | Return Type | Description |
---|---|---|
List configured identity providers | identityProviderBase collection | Retrieve all identity providers configured in a tenant. |
Create identity provider | socialidentityprovider, openIdConnectIdentityProvider, or appleManagedIdentityProvider | Create a new object of one of the following object types:
|
Get | socialidentityprovider, builtInIdentityProvider, openIdConnectIdentityProvider, or appleManagedIdentityProvider | Retrieve properties of one of the following object types:
|
Update | None | Update one of the following object types:
|
Delete | None | Delete one of the following object types:
|
List available identity providers | String collection | Retrieve all supported identity provider types in the tenant. |
Properties
Property | Type | Description |
---|---|---|
id | String | The identifier of the identity provider. |
displayName | String | The display name of the identity provider. |
JSON representation
The following JSON representation shows the resource type. The following is a JSON representation of the resource.
{
"id": "String",
"displayName": "String",
}