Skip to main content

PasswordDigitTokenReset

Properties

NameTypeDescriptionNotes
user_idstrThe uid of the user requested for digit token[required]
lengthintThe length of digit token. It should be from 6 to 18, inclusive. The default value is 6.[optional]
duration_minutesintThe time to live for the digit token in minutes. The default value is 5 minutes.[optional]
}

Example

from sailpoint.v2024.models.password_digit_token_reset import PasswordDigitTokenReset

password_digit_token_reset = PasswordDigitTokenReset(
user_id='Abby.Smith',
length=8,
duration_minutes=5
)

[Back to top]