Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Specifies criteria for selecting an appropriate authenticator for credential creation. These criteria help ensure that the created credential meets the relying party's security and usability requirements. This complex type is the type for the authenticatorSelection property of the webauthnPublicKeyCredentialCreationOptions resource.
Properties
| Property | Type | Description |
|---|---|---|
| authenticatorAttachment | String | Specifies the preferred attachment modality for the authenticator. Possible values: platform (device-bound authenticator, such as Windows Hello), cross-platform (removable authenticator, such as a USB security key), or null (no preference). |
| requireResidentKey | Boolean | Indicates whether the authenticator must create a client-side-resident credential (also known as a discoverable credential). If true, the credential can be used without providing a credential ID. |
| userVerification | String | Specifies the relying party's preference for user verification during credential creation. Possible values: required, preferred, or discouraged. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webauthnAuthenticatorSelectionCriteria",
"authenticatorAttachment": "String",
"requireResidentKey": "Boolean",
"userVerification": "String"
}