adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-send-account-verification-request
title: SendAccountVerificationRequest
pagination_label: SendAccountVerificationRequest
sidebar_label: SendAccountVerificationRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SendAccountVerificationRequest']
slug: /tools/sdk/powershell/v2024/models/send-account-verification-request
tags: ['SDK', 'Software Development Kit', 'SendAccountVerificationRequest']
---
# SendAccountVerificationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**SourceName** | Pointer to **String** | The source name where identity account password should be reset | [optional]
**Via** | **Enum** [ "EMAIL_WORK", "EMAIL_PERSONAL", "LINK_WORK", "LINK_PERSONAL" ] | The method to send notification | [required]
## Examples
- Prepare the resource
```powershell
$SendAccountVerificationRequest = Initialize-PSSailpoint.V2024SendAccountVerificationRequest -SourceName Active Directory Source `
-Via EMAIL_WORK
```
- Convert the resource to JSON
```powershell
$SendAccountVerificationRequest | ConvertTo-JSON
```
[[Back to top]](#)