Edit

verifiedIdProfileConfiguration resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Contains settings for a specific credential in a Verified ID profile.

Properties

Property Type Description
acceptedIssuer String Trusted Verified ID issuer. Required.
claimBindings claimBinding collection Claim bindings from Verified ID to source attributes. Required.
claimBindingSource claimBindingSource Source to validate against Verified ID claims. The possible values are: directory, unknownFutureValue. Required.
claimValidation claimValidation Validation settings for claim processing. Required.
manifestUrl String The URL where the credential issuer's manifest can be found. The manifest defines the credential schema and issuer details. Optional.
methodType verifiedIdMethodType The method used to configure the Verified ID profile. When omitted, null, or set to notConfigured, the effective method type is identityVerificationPartner. The possible values are: identityVerificationPartner, tenantCustomCredential, verifiedEmployee, unknownFutureValue, notConfigured. Use the Prefer: include-unknown-enum-members request header to get the following value from this evolvable enum: notConfigured. The default value is identityVerificationPartner. Optional.
type String Verified ID type. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.verifiedIdProfileConfiguration",
  "methodType": "String",
  "type": "String",
  "manifestUrl": "String",
  "acceptedIssuer": "String",
  "claimBindingSource": "String",
  "claimBindings": [
    {
      "@odata.type": "microsoft.graph.claimBinding"
    }
  ],
  "claimValidation": {
    "@odata.type": "microsoft.graph.claimValidation"
  }
}