Skip to main content

authentication_password_methods

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

Overview

Nameauthentication_password_methods
TypeResource
Identra_id.users.authentication_password_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])$)
passwordstringFor security, the password is always returned as null from a LIST or GET operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, password_authentication_method_idRepresents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.
listselectuser_idRepresents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.
insertinsertuser_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
password_authentication_method_idstringThe unique identifier of passwordAuthenticationMethod
user_idstringThe unique identifier of user

SELECT examples

Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.

SELECT
id,
createdDateTime,
password
FROM entra_id.users.authentication_password_methods
WHERE user_id = '{{ user_id }}' -- required
AND password_authentication_method_id = '{{ password_authentication_method_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.users.authentication_password_methods (
id,
createdDateTime,
password,
user_id
)
SELECT
'{{ id }}',
'{{ createdDateTime }}',
'{{ password }}',
'{{ user_id }}'
RETURNING
id,
createdDateTime,
password
;