| title | verifiedIdProfile resource type |
|---|---|
| description | Profile containing properties about a Verified ID provider and purpose |
| author | tilarso |
| ms.date | 10/10/2025 |
| toc.title | Verified ID profile (preview) |
| ms.localizationpriority | medium |
| ms.subservice | entra-sign-in |
| doc_type | resourcePageType |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Verified ID profiles defining set of properties and usage patterns.
Inherits from entity.
| Method | Return type | Description |
|---|---|---|
| List | verifiedIdProfile collection | Get a list of the verifiedIdProfile objects and their properties. |
| Create | verifiedIdProfile | Create a new verifiedIdProfile object. |
| Get | verifiedIdProfile | Read the properties and relationships of verifiedIdProfile object. |
| Update | verifiedIdProfile | Update the properties of a verifiedIdProfile object. |
| Delete | None | Delete a verifiedIdProfile object. |
| Property | Type | Description |
|---|---|---|
| description | String | Description for the verified ID profile. Required. |
| faceCheckConfiguration | faceCheckConfiguration | Set of properties configuring Entra Verified ID Face Check behavior. Required. |
| id | String | Profile identifier. Inherited from entity. |
| lastModifiedDateTime | DateTimeOffset | DateTime the profile was last modified. Optional. |
| name | String | Display name for the verified ID profile. Required. |
| priority | Int32 | Defines profile processing priority if multiple profiles are configured. Optional. |
| state | verifiedIdProfileState | Enablement state for the profile. The possible values are: enabled, disabled, unknownFutureValue. Required. |
| verifierDid | String | Decentralized Identifier (DID) string that represents the verifier in the verifiable credential exchange. Required. |
| verifiedIdProfileConfiguration | verifiedIdProfileConfiguration | Set of properties expressing the accepted issuer, claims binding, and credential type. Required. |
| verifiedIdUsageConfigurations | verifiedIdUsageConfiguration collection | Collection defining the usage purpose for the profile. The possible values are: recovery, onboarding, all, unknownFutureValue. Required. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.verifiedIdProfile",
"id": "String (identifier)",
"name": "String",
"description": "String",
"lastModifiedDateTime": "String (timestamp)",
"state": "String",
"verifierDid": "String",
"priority": "Integer",
"verifiedIdProfileConfiguration": {
"@odata.type": "microsoft.graph.verifiedIdProfileConfiguration"
},
"faceCheckConfiguration": {
"@odata.type": "microsoft.graph.faceCheckConfiguration"
},
"verifiedIdUsageConfigurations": [
{
"@odata.type": "microsoft.graph.verifiedIdUsageConfiguration"
}
]
}