Skip to main content

authentication_fido2_methods_creation_options

Creates, updates, deletes, gets or lists an authentication_fido2_methods_creation_options resource.

Overview

Nameauthentication_fido2_methods_creation_options
TypeResource
Identra_id.users.authentication_fido2_methods_creation_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
challengeTimeoutDateTimestring (date-time) (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
publicKeyobject(opaque JSON object) (title: webauthnPublicKeyCredentialCreationOptions)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
user_idstringThe unique identifier of user

SELECT examples

Success

SELECT
challengeTimeoutDateTime,
publicKey
FROM entra_id.users.authentication_fido2_methods_creation_options
WHERE user_id = '{{ user_id }}' -- required
;