--- id: beta-account-toggle-request title: AccountToggleRequest pagination_label: AccountToggleRequest sidebar_label: AccountToggleRequest sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'AccountToggleRequest', 'BetaAccountToggleRequest'] slug: /tools/sdk/powershell/beta/models/account-toggle-request tags: ['SDK', 'Software Development Kit', 'AccountToggleRequest', 'BetaAccountToggleRequest'] --- # AccountToggleRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ExternalVerificationId** | **String** | If set, an external process validates that the user wants to proceed with this request. | [optional] **ForceProvisioning** | **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 ```powershell $AccountToggleRequest = Initialize-BetaAccountToggleRequest -ExternalVerificationId 3f9180835d2e5168015d32f890ca1581 ` -ForceProvisioning false ``` - Convert the resource to JSON ```powershell $AccountToggleRequest | ConvertTo-JSON ``` [[Back to top]](#)