Get identityProvider
Article
08/09/2022
5 minutes to read
6 contributors
Feedback
In this article
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 Azure AD. In Azure AD B2C, this operation can currently get a socialIdentityProvider , or an appleManagedIdentityProvider resource.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
IdentityProvider.Read.All, IdentityProvider.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
IdentityProvider.Read.All, IdentityProvider.ReadWrite.All
The work or school account needs to belong to one of the following roles:
Global Administrator
External Identity Provider Administrator
External ID user flow administrator
HTTP request
GET /identity/identityProviders/{id}
Name
Description
Authorization
Bearer {token}. Required.
Request body
Do not 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 an Azure AD 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 (Azure AD or Azure AD B2C)
Request
The following is an example of the request.
GET https://graph.microsoft.com/v1.0/identity/identityProviders/Amazon-OAUTH
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var identityProviderBase = await graphClient.Identity.IdentityProviders["{identityProviderBase-id}"]
.Request()
.GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let identityProviderBase = await client.api('/identity/identityProviders/Amazon-OAUTH')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
IdentityProviderBase identityProviderBase = graphClient.identity().identityProviders("Amazon-OAUTH")
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
result, err := graphClient.Identity().IdentityProvidersById("identityProviderBase-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestResult = $graphServiceClient->identity()->identityProvidersById('identityProviderBase-id')->get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of 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 Azure AD)
Request
The following is an example of the request.
GET https://graph.microsoft.com/v1.0/identity/identityProviders/MSASignup-OAUTH
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var identityProviderBase = await graphClient.Identity.IdentityProviders["{identityProviderBase-id}"]
.Request()
.GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let identityProviderBase = await client.api('/identity/identityProviders/MSASignup-OAUTH')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
IdentityProviderBase identityProviderBase = graphClient.identity().identityProviders("MSASignup-OAUTH")
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
result, err := graphClient.Identity().IdentityProvidersById("identityProviderBase-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestResult = $graphServiceClient->identity()->identityProvidersById('identityProviderBase-id')->get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of 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 is an example of the request.
GET https://graph.microsoft.com/v1.0/identity/identityProviders/Apple-Managed-OIDC
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var identityProviderBase = await graphClient.Identity.IdentityProviders["{identityProviderBase-id}"]
.Request()
.GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let identityProviderBase = await client.api('/identity/identityProviders/Apple-Managed-OIDC')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
IdentityProviderBase identityProviderBase = graphClient.identity().identityProviders("Apple-Managed-OIDC")
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
result, err := graphClient.Identity().IdentityProvidersById("identityProviderBase-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestResult = $graphServiceClient->identity()->identityProvidersById('identityProviderBase-id')->get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of 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": "******"
}