GET - User Password

Returns login and password expiry details of target user.

Parameters

  • user_id (str): Target user ID.

Returns

  • Dict: Details of user

How To Use:

my_api.users.get_user_password(
    "user_ID"
)

Example Data Returned (Formatted)

{
  "isLoginDisabled": false,
  "expirationDays": "-2147483648",
  "userId": "[email protected]"
}

Last updated

Was this helpful?