starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: account-unlock-request
title: AccountUnlockRequest
pagination_label: AccountUnlockRequest
sidebar_label: AccountUnlockRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccountUnlockRequest', 'AccountUnlockRequest']
slug: /tools/sdk/python/v3/models/account-unlock-request
tags: ['SDK', 'Software Development Kit', 'AccountUnlockRequest', 'AccountUnlockRequest']
---
# AccountUnlockRequest
Request used for account unlock
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**external_verification_id** | **str** | If set, an external process validates that the user wants to proceed with this request. | [optional]
**unlock_idn_account** | **bool** | If set, the IDN account is unlocked after the workflow completes. | [optional]
**force_provisioning** | **bool** | 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]
}
## Example
```python
from sailpoint.v3.models.account_unlock_request import AccountUnlockRequest
account_unlock_request = AccountUnlockRequest(
external_verification_id='3f9180835d2e5168015d32f890ca1581',
unlock_idn_account=False,
force_provisioning=False
)
```
[[Back to top]](#)