builtInIdentityProvider 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 built-in identity providers with External Identities for a Microsoft Entra tenant.

For Microsoft Entra B2B scenarios in a Microsoft Entra tenant, the built-in identity provider type can be a Microsoft Entra ID, Microsoft account (MSA) or email one-time passcode (EmailOTP).

This type will inherit from identityProviderBase.

Methods

Method Return Type Description
List identityProviderBase collection Retrieve all identity providers configured in a tenant including the built-in identity providers. There's no way to retrieve only the built-in identity providers in a tenant.
Get builtInIdentityProvider Retrieve properties of a built-in identity provider.
List available provider types String collection Retrieve all available identity provider types available in the tenant.

Properties

Property Type Description
id String The identifier of the identity provider. Inherited from identityProviderBase. Read-only.
displayName String The display name of the identity provider. Inherited from identityProviderBase.
identityProviderType String The identity provider type. For a B2B scenario, possible values: AADSignup, MicrosoftAccount, EmailOTP. Required.

JSON representation

The following JSON representation shows the resource type.

{
    "id": "String",
    "identityProviderType": "String",
    "displayName": "String",
}