adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-verification-response
title: VerificationResponse
pagination_label: VerificationResponse
sidebar_label: VerificationResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'VerificationResponse', 'BetaVerificationResponse']
slug: /tools/sdk/powershell/beta/models/verification-response
tags: ['SDK', 'Software Development Kit', 'VerificationResponse', 'BetaVerificationResponse']
---
# VerificationResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RequestId** | Pointer to **String** | The verificationPollRequest request ID | [optional]
**Status** | Pointer to **Enum** [ "PENDING", "SUCCESS", "FAILED", "LOCKOUT", "NOT_ENOUGH_DATA" ] | MFA Authentication status | [optional]
**VarError** | Pointer to **String** | Error messages from MFA verification request | [optional]
## Examples
- Prepare the resource
```powershell
$VerificationResponse = Initialize-PSSailpoint.BetaVerificationResponse -RequestId 089899f13a8f4da7824996191587bab9 `
-Status SUCCESS `
-VarError Unable to connect DUO Service during verification
```
- Convert the resource to JSON
```powershell
$VerificationResponse | ConvertTo-JSON
```
[[Back to top]](#)