Skip to main content

SendAccountVerificationRequest

Properties

NameTypeDescriptionNotes
source_namestrThe source name where identity account password should be reset[optional]
viaEnum [ 'EMAIL_WORK', 'EMAIL_PERSONAL', 'LINK_WORK', 'LINK_PERSONAL' ]The method to send notification[required]
}

Example

from sailpoint.v2024.models.send_account_verification_request import SendAccountVerificationRequest

send_account_verification_request = SendAccountVerificationRequest(
source_name='Active Directory Source',
via='EMAIL_WORK'
)

[Back to top]