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
Represents a WebAuthn public key credential created during FIDO2 passkey registration. This complex type is the type for the publicKeyCredential property of the fido2AuthenticationMethod resource.
Properties
| Property | Type | Description |
|---|---|---|
| clientExtensionResults | webauthnAuthenticationExtensionsClientOutputs | The output of the WebAuthn extension processing. |
| id | String | The credential ID created by the WebAuthn Authenticator. This value is Base64URL-encoded without padding. |
| response | webauthnAuthenticatorAttestationResponse | The response from the WebAuthn Authenticator after generating an attestation. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webauthnPublicKeyCredential",
"id": "String",
"response": {
"@odata.type": "microsoft.graph.webauthnAuthenticatorAttestationResponse"
},
"clientExtensionResults": {
"@odata.type": "microsoft.graph.webauthnAuthenticationExtensionsClientOutputs"
}
}