webauthnPublicKeyCredential 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 attributes returned to the client from the browser after a web authentication credential is created. These attributes are needed by the server to persist the credential for use in Microsoft Entra ID. For more information, see PublicKeyCredential Interface.
Properties
Property | Type | Description |
---|---|---|
id | String | The credential ID created by the WebAuthn Authenticator. |
response | webauthnAuthenticatorAttestationResponse | Response data returned from a WebAuthn authenticator after it creates a new public key credential. |
clientExtensionResults | webauthnAuthenticationExtensionsClientOutputs | The untyped results from the execution of extensions requested by the client when creating a new public key credential. |
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"
}
}