Skip to main content

authentication_windows_hello_for_business_methods

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

Overview

Nameauthentication_windows_hello_for_business_methods
TypeResource
Identra_id.users.authentication_windows_hello_for_business_methods

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
createdDateTimestring (date-time)Represents the date and time when an entity was created. Read-only. (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])$)
deviceThe registered device on which this Windows Hello for Business key resides. Supports $expand. When you get a user's Windows Hello for Business registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/admin@contoso.com/authentication/windowsHelloForBusinessMethods/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
displayNamestringThe name of the device on which Windows Hello for Business is registered
keyStrengthKey strength of this Windows Hello for Business key. The possible values are: normal, weak, unknown.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, windows_hello_for_business_authentication_method_idRead the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object.
listselectuser_idGet a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties.
deletedeleteuser_id, windows_hello_for_business_authentication_method_idIf-MatchDeletes a windowsHelloForBusinessAuthenticationMethod object.

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
windows_hello_for_business_authentication_method_idstringThe unique identifier of windowsHelloForBusinessAuthenticationMethod
If-MatchstringETag

SELECT examples

Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object.

SELECT
id,
createdDateTime,
device,
displayName,
keyStrength
FROM entra_id.users.authentication_windows_hello_for_business_methods
WHERE user_id = '{{ user_id }}' -- required
AND windows_hello_for_business_authentication_method_id = '{{ windows_hello_for_business_authentication_method_id }}' -- required
;

DELETE examples

Deletes a windowsHelloForBusinessAuthenticationMethod object.

DELETE FROM entra_id.users.authentication_windows_hello_for_business_methods
WHERE user_id = '{{ user_id }}' --required
AND windows_hello_for_business_authentication_method_id = '{{ windows_hello_for_business_authentication_method_id }}' --required
AND If-Match = '{{ If-Match }}'
;