Get identityProvider

Namespace: microsoft.graph

Get the properties and relationships of the specified identity provider configured in the tenant.

Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) IdentityProvider.Read.All IdentityProvider.ReadWrite.All
Delegated (personal Microsoft account) Not supported. Not supported.
Application IdentityProvider.Read.All IdentityProvider.ReadWrite.All

The work or school account needs to belong to at least the External Identity Provider Administrator Microsoft Entra role.

HTTP request

GET /identity/identityProviders/{id}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a JSON representation of a socialIdentityProvider or a builtinIdentityProvider in the response body for a Microsoft Entra tenant.

For an Azure AD B2C tenant, this method returns a 200 OK response code and a JSON representation of a socialIdentityProvider or an appleManagedIdentityProvider object in the response body.

Examples

Example 1: Retrieve a specific social identity provider (Microsoft Entra ID or Azure AD B2C)

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/identity/identityProviders/Amazon-OAUTH

Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
    "id": "Amazon-OAUTH",
    "displayName": "Amazon",
    "identityProviderType": "Amazon",
    "clientId": "09876545678908765978678",
    "clientSecret": "******"
}

Example 2: Retrieve a specific built-in identity provider (only for Microsoft Entra ID)

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/identity/identityProviders/MSASignup-OAUTH

Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
    "id": "MSASignup-OAUTH",
    "identityProviderType": "MicrosoftAccount",
    "displayName": "MicrosoftAccount"
}

Example 3: Retrieves Apple identity provider(only for Azure AD B2C)

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/identity/identityProviders/Apple-Managed-OIDC

Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
    "id": "Apple-Managed-OIDC",
    "displayName": "Sign in with Apple",
    "developerId": "UBF8T346G9",
    "serviceId": "com.microsoft.rts.b2c.test.client",
    "keyId": "99P6D879C4",
    "certificateData": "******"
}