Skip to main content

Accountunlockrequest

Request used for account unlock

Properties

NameTypeDescriptionNotes
external_verification_idstrIf set, an external process validates that the user wants to proceed with this request.[optional]
unlock_idn_accountboolIf set, the IDN account is unlocked after the workflow completes.[optional]
force_provisioningboolIf set, provisioning updates the account attribute at the source. This option is used when the account is not synced to ensure the attribute is updated.[optional]
}

Example

from sailpoint.accounts.models.accountunlockrequest import Accountunlockrequest

accountunlockrequest = Accountunlockrequest(
external_verification_id='3f9180835d2e5168015d32f890ca1581',
unlock_idn_account=False,
force_provisioning=False
)

[Back to top]