webauthnCredentialCreationOptions 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.
Represents the data returned from a WebAuthn Authenticator after the Authenticator creates a new public key credential. For more information, see Web Authentication: An API for accessing Public Key Credentials Level 2.
Properties
Property | Type | Description |
---|---|---|
challengeTimeoutDateTime | DateTimeOffset | Defines when the challenge in the creation options is no longer valid. Expired challenges are rejected when you attempt to create a new fido2AuthenticationMethod. |
publicKey | webauthnCredentialCreationOptions | Defines public key options for the creation of a new WebAuthn public key credential. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webauthnCredentialCreationOptions",
"challengeTimeoutDateTime": "String (timestamp)",
"publicKey": {
"@odata.type": "microsoft.graph.webauthnPublicKeyCredentialCreationOptions"
}
}