Skip to main content

authentication_platform_credential_methods

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

Overview

Nameauthentication_platform_credential_methods
TypeResource
Identra_id.users.authentication_platform_credential_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 Platform Credential resides. Supports $expand. When you get a user's Platform Credential registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/admin@contoso.com/authentication/platformCredentialAuthenticationMethod/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
displayNamestringThe name of the device on which Platform Credential is registered.
keyStrengthKey strength of this Platform Credential key. The possible values are: normal, weak, unknown.
platformPlatform on which this Platform Credential key is present. The possible values are: unknown, windows, macOS,iOS, android, linux.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, platform_credential_authentication_method_idRepresents a platform credential instance registered to a user on Mac OS.
listselectuser_idRepresents a platform credential instance registered to a user on Mac OS.
deletedeleteuser_id, platform_credential_authentication_method_idIf-MatchDelete a platformCredentialAuthenticationMethod 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
platform_credential_authentication_method_idstringThe unique identifier of platformCredentialAuthenticationMethod
user_idstringThe unique identifier of user
If-MatchstringETag

SELECT examples

Represents a platform credential instance registered to a user on Mac OS.

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

DELETE examples

Delete a platformCredentialAuthenticationMethod object.

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