adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 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/beta/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.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]](#)