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.password_management.models.passworddigittokenreset import Passworddigittokenreset

passworddigittokenreset = Passworddigittokenreset(
user_id='Abby.Smith',
length=8,
duration_minutes=5
)

[Back to top]