|
| 1 | +--- |
| 2 | +title: "Get verifiableCredentialsAuthenticationMethodConfiguration" |
| 3 | +description: "Read the properties and relationships of verifiableCredentialsAuthenticationMethodConfiguration object." |
| 4 | +author: "tilarso" |
| 5 | +ms.date: 04/29/2026 |
| 6 | +ms.localizationpriority: medium |
| 7 | +ms.subservice: "entra-sign-in" |
| 8 | +doc_type: apiPageType |
| 9 | +--- |
| 10 | + |
| 11 | +# Get verifiableCredentialsAuthenticationMethodConfiguration |
| 12 | + |
| 13 | +Namespace: microsoft.graph |
| 14 | + |
| 15 | +Read the properties and relationships of [verifiableCredentialsAuthenticationMethodConfiguration](../resources/verifiablecredentialsauthenticationmethodconfiguration.md) object. |
| 16 | + |
| 17 | +## Permissions |
| 18 | + |
| 19 | +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). |
| 20 | + |
| 21 | +<!-- { |
| 22 | + "blockType": "permissions", |
| 23 | + "name": "verifiablecredentialsauthenticationmethodconfiguration-get-permissions" |
| 24 | +} |
| 25 | +--> |
| 26 | +[!INCLUDE [permissions-table](../includes/permissions/verifiablecredentialsauthenticationmethodconfiguration-get-permissions.md)] |
| 27 | + |
| 28 | +[!INCLUDE [rbac-authentication-methods-policy-apis-read](../includes/rbac-for-apis/rbac-authentication-methods-policy-apis-read.md)] |
| 29 | + |
| 30 | +## HTTP request |
| 31 | + |
| 32 | +<!-- { |
| 33 | + "blockType": "ignored" |
| 34 | +} |
| 35 | +--> |
| 36 | +``` http |
| 37 | +GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/VerifiableCredentials |
| 38 | +``` |
| 39 | + |
| 40 | +## Optional query parameters |
| 41 | + |
| 42 | +None. |
| 43 | + |
| 44 | +## Request headers |
| 45 | + |
| 46 | +|Name|Description| |
| 47 | +|:---|:---| |
| 48 | +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| |
| 49 | + |
| 50 | +## Request body |
| 51 | + |
| 52 | +Don't supply a request body for this method. |
| 53 | + |
| 54 | +## Response |
| 55 | + |
| 56 | +If successful, this method returns a `200 OK` response code and a [verifiableCredentialsAuthenticationMethodConfiguration](../resources/verifiablecredentialsauthenticationmethodconfiguration.md) object in the response body. |
| 57 | + |
| 58 | +## Examples |
| 59 | + |
| 60 | +### Request |
| 61 | + |
| 62 | +The following example shows a request. |
| 63 | +<!-- { |
| 64 | + "blockType": "request", |
| 65 | + "name": "get_verifiablecredentialsauthenticationmethodconfiguration" |
| 66 | +} |
| 67 | +--> |
| 68 | +``` http |
| 69 | +GET https://graph.microsoft.com/v1.0/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/VerifiableCredentials |
| 70 | +``` |
| 71 | + |
| 72 | + |
| 73 | +### Response |
| 74 | + |
| 75 | +The following example shows the response. |
| 76 | +>**Note:** The response object shown here might be shortened for readability. |
| 77 | +<!-- { |
| 78 | + "blockType": "response", |
| 79 | + "truncated": true, |
| 80 | + "@odata.type": "microsoft.graph.verifiableCredentialsAuthenticationMethodConfiguration" |
| 81 | +} |
| 82 | +--> |
| 83 | +``` http |
| 84 | +HTTP/1.1 200 OK |
| 85 | +Content-Type: application/json |
| 86 | +
|
| 87 | +{ |
| 88 | + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#authenticationMethodConfigurations/$entity", |
| 89 | + "@odata.type": "#microsoft.graph.verifiableCredentialsAuthenticationMethodConfiguration", |
| 90 | + "@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET policies/authenticationMethodsPolicy/authenticationMethodConfigurations('<key>')?$select=excludeTargets,state", |
| 91 | + "id": "VerifiableCredentials", |
| 92 | + "state": "enabled", |
| 93 | + "excludeTargets": [ |
| 94 | + { |
| 95 | + "id": "10051f25-53a8-4f81-8a0b-9fc22887e640", |
| 96 | + "targetType": "group" |
| 97 | + }, |
| 98 | + { |
| 99 | + "id": "e2c2244f-66cc-4d5b-9042-686f9fa42986", |
| 100 | + "targetType": "group" |
| 101 | + } |
| 102 | + ], |
| 103 | + "includeTargets": [ |
| 104 | + { |
| 105 | + "targetType": "group", |
| 106 | + "id": "3160256b-e74c-426e-9a65-b68a71c7f054", |
| 107 | + "isRegistrationRequired": false, |
| 108 | + "verifiedIdProfiles": [ |
| 109 | + "9dda0ae1-e007-4a1d-81ec-2cf4b1274610" |
| 110 | + ] |
| 111 | + } |
| 112 | + ] |
| 113 | +} |
| 114 | +``` |
| 115 | + |
0 commit comments