|
| 1 | +--- |
| 2 | +title: "Get externalAuthenticationMethodConfiguration" |
| 3 | +description: "Read the properties and relationships of an externalAuthenticationMethodConfiguration object." |
| 4 | +author: "gregkmsft" |
| 5 | +ms.localizationpriority: medium |
| 6 | +ms.subservice: "entra-sign-in" |
| 7 | +doc_type: apiPageType |
| 8 | +ms.date: 01/19/2026 |
| 9 | +--- |
| 10 | + |
| 11 | +# Get externalAuthenticationMethodConfiguration |
| 12 | + |
| 13 | +Namespace: microsoft.graph |
| 14 | + |
| 15 | +Read the properties and relationships of an [externalAuthenticationMethodConfiguration](../resources/externalauthenticationmethodconfiguration.md) object. |
| 16 | + |
| 17 | +[!INCLUDE [national-cloud-support](../../includes/all-clouds.md)] |
| 18 | + |
| 19 | +## Permissions |
| 20 | + |
| 21 | +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](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference). |
| 22 | + |
| 23 | +<!-- { "blockType": "permissions", "name": "externalauthenticationmethodconfiguration_get" } --> |
| 24 | +[!INCLUDE [permissions-table](../includes/permissions/externalauthenticationmethodconfiguration-get-permissions.md)] |
| 25 | + |
| 26 | +[!INCLUDE [rbac-authentication-methods-policy-apis-read](../includes/rbac-for-apis/rbac-authentication-methods-policy-apis-read.md)] |
| 27 | + |
| 28 | +## HTTP request |
| 29 | + |
| 30 | +<!-- { |
| 31 | + "blockType": "ignored" |
| 32 | +} |
| 33 | +--> |
| 34 | +```http |
| 35 | +GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{id} |
| 36 | +``` |
| 37 | + |
| 38 | +## Optional query parameters |
| 39 | + |
| 40 | +This method does not support OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). |
| 41 | + |
| 42 | +## Request headers |
| 43 | + |
| 44 | +|Name|Description| |
| 45 | +|:---|:---| |
| 46 | +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| |
| 47 | + |
| 48 | +## Request body |
| 49 | + |
| 50 | +Don't supply a request body for this method. |
| 51 | + |
| 52 | +## Response |
| 53 | + |
| 54 | +If successful, this method returns a `200 OK` response code and an [externalAuthenticationMethodConfiguration](../resources/externalauthenticationmethodconfiguration.md) object in the response body. |
| 55 | + |
| 56 | +## Examples |
| 57 | + |
| 58 | +### Request |
| 59 | + |
| 60 | +The following example shows a request. |
| 61 | +<!-- { |
| 62 | + "blockType": "request", |
| 63 | + "name": "get_externalauthenticationmethodconfiguration" |
| 64 | +} |
| 65 | +--> |
| 66 | +```http |
| 67 | +GET https://graph.microsoft.com/v1.0/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/b3107ab7-68c7-4553-a167-48c1e9c24d52 |
| 68 | +``` |
| 69 | + |
| 70 | +### Response |
| 71 | + |
| 72 | +The following example shows the response. |
| 73 | +>**Note:** The response object shown here might be shortened for readability. |
| 74 | +<!-- { |
| 75 | + "blockType": "response", |
| 76 | + "truncated": true, |
| 77 | + "@odata.type": "microsoft.graph.externalAuthenticationMethodConfiguration" |
| 78 | +} |
| 79 | +--> |
| 80 | +```http |
| 81 | +HTTP/1.1 200 OK |
| 82 | +Content-Type: application/json |
| 83 | +
|
| 84 | +{ |
| 85 | + "@odata.type": "#microsoft.graph.externalAuthenticationMethodConfiguration", |
| 86 | + "id": "b3107ab7-68c7-4553-a167-48c1e9c24d52", |
| 87 | + "displayName": "Adatum", |
| 88 | + "appId": "fb262304-618c-4ffb-878a-114490bdf200", |
| 89 | + "openIdConnectSetting": { |
| 90 | + "clientId": "06a011bd-ec92-4404-80fb-db6d5ada8ee2", |
| 91 | + "discoveryUrl": "https//Adatum.com/.well-known/openid-configuration" |
| 92 | + }, |
| 93 | + "state": "disabled", |
| 94 | + "excludeTargets": [], |
| 95 | + "includeTargets": [] |
| 96 | +} |
| 97 | +``` |
| 98 | + |
0 commit comments