GET - User Portal Passcode

Pulls the Portal Passcode form a given user.

Parameters

  • user_id (str): Target user ID of the user you would like retrieve the password from.

Returns

  • Dict: Portal Passcode

How To Use:

my_api.users.get_user_portal_passcode(
    "user_ID"
)

Example Data Returned (Formatted)

{
  "isLoginDisabled": false,
  "expirationDays": 30,
  "passcode": "*****",
  "userId": "123456789@www.domain.com"
}

Last updated

Was this helpful?