authentication_fido2_methods_creation_options
Creates, updates, deletes, gets or lists an authentication_fido2_methods_creation_options resource.
Overview
| Name | authentication_fido2_methods_creation_options |
| Type | Resource |
| Id | entra_id.users.authentication_fido2_methods_creation_options |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
challengeTimeoutDateTime | string (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])$) |
publicKey | object | (opaque JSON object) (title: webauthnPublicKeyCredentialCreationOptions) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | user_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.
| Name | Datatype | Description |
|---|---|---|
user_id | string | The unique identifier of user |
SELECT examples
- get
Success
SELECT
challengeTimeoutDateTime,
publicKey
FROM entra_id.users.authentication_fido2_methods_creation_options
WHERE user_id = '{{ user_id }}' -- required
;