builtInIdentityProvider resource type

Namespace: microsoft.graph

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 inherits 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
displayName String The display name of the identity provider. Inherited from identityProviderBase.
id String The identifier of the identity provider. Inherited from identityProviderBase. Read-only.
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.

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