List identityProviders
Namespace: microsoft.graph
Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase.
For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects.
For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects.
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 one of the following roles:
- Global Administrator
- External Identity Provider Administrator
- External ID user flow administrator
HTTP request
GET /identity/identityProviders
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of socialIdentityProvider, or builtinIdentityProvider objects 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 collection of socialIdentityProvider, or appleManagedIdentityProvider objects in the response body.
Examples
Example 1: List all identity provider resources configured in a Microsoft Entra tenant
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/identity/identityProviders
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
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identity/identityProviders",
"value":[
{
"@odata.type": "microsoft.graph.builtInIdentityProvider",
"id": "MSASignup-OAUTH",
"identityProviderType": "MicrosoftAccount",
"displayName": "MicrosoftAccount"
},
{
"@odata.type": "#microsoft.graph.socialIdentityProvider",
"id": "Facebook-OAUTH",
"displayName": "Facebook",
"identityProviderType": "Facebook",
"clientId": "test",
"clientSecret": "******"
}
]
}
Example 2: List all identity provider resources configured in an Azure AD B2C tenant
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/identity/identityProviders
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
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identity/identityProviders",
"value": [
{
"@odata.type": "#microsoft.graph.socialIdentityProvider",
"id": "LinkedIn-OAUTH",
"displayName": "linkedin",
"identityProviderType": "LinkedIn",
"clientId": "866xc0qtyy00ih",
"clientSecret": "******"
},
{
"@odata.type": "#microsoft.graph.appleManagedIdentityProvider",
"id": "Apple-Managed-OIDC",
"displayName": "Sign in with Apple",
"developerId": "UBF8T346G9",
"serviceId": "com.microsoft.aad.b2c.iuyt.client",
"keyId": "99P6DD87C4",
"certificateData": "******"
}
]
}
Feedback
Submit and view feedback for