adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: verification-response
title: VerificationResponse
pagination_label: VerificationResponse
sidebar_label: VerificationResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'VerificationResponse']
slug: /tools/sdk/powershell/v3/models/verification-response
tags: ['SDK', 'Software Development Kit', 'VerificationResponse']
---
# 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.V3VerificationResponse -RequestId 089899f13a8f4da7824996191587bab9 `
-Status SUCCESS `
-VarError Unable to connect DUO Service during verification
```
- Convert the resource to JSON
```powershell
$VerificationResponse | ConvertTo-JSON
```
[[Back to top]](#)