Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.9 KB

File metadata and controls

49 lines (41 loc) · 1.9 KB
title webauthnPublicKeyCredential resource type
description Contains attributes returned to the client from the browser after a web authentication (WebAuthn) credential is created.
author tilarso
ms.reviewer intelligentaccesspm
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 07/24/2024

webauthnPublicKeyCredential resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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"
  }
}