Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/PasswordDigitTokenReset.md
2025-02-20 12:59:19 -05:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-password-digit-token-reset PasswordDigitTokenReset PasswordDigitTokenReset PasswordDigitTokenReset pythonsdk
python
Python
sdk
PasswordDigitTokenReset
V2024PasswordDigitTokenReset
/tools/sdk/python/v2024/models/password-digit-token-reset
SDK
Software Development Kit
PasswordDigitTokenReset
V2024PasswordDigitTokenReset

PasswordDigitTokenReset

Properties

Name Type Description Notes
user_id str The uid of the user requested for digit token [required]
length int The length of digit token. It should be from 6 to 18, inclusive. The default value is 6. [optional]
duration_minutes int The 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]