Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccountUnlockRequest.md
2025-01-28 13:29:29 -05:00

1.4 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-account-unlock-request AccountUnlockRequest AccountUnlockRequest AccountUnlockRequest powershellsdk
powershell
PowerShell
sdk
AccountUnlockRequest
V2024AccountUnlockRequest
/tools/sdk/powershell/v2024/models/account-unlock-request
SDK
Software Development Kit
AccountUnlockRequest
V2024AccountUnlockRequest

AccountUnlockRequest

Properties

Name Type Description Notes
ExternalVerificationId Pointer to String If set, an external process validates that the user wants to proceed with this request. [optional]
UnlockIDNAccount Pointer to Boolean If set, the IDN account is unlocked after the workflow completes. [optional]
ForceProvisioning Pointer to Boolean If 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]

Examples

  • Prepare the resource
$AccountUnlockRequest = Initialize-PSSailpoint.V2024AccountUnlockRequest  -ExternalVerificationId 3f9180835d2e5168015d32f890ca1581 `
 -UnlockIDNAccount false `
 -ForceProvisioning false
  • Convert the resource to JSON
$AccountUnlockRequest | ConvertTo-JSON

[Back to top]