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,37 @@
---
id: kba-auth-response-item
title: KbaAuthResponseItem
pagination_label: KbaAuthResponseItem
sidebar_label: KbaAuthResponseItem
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'KbaAuthResponseItem']
slug: /tools/sdk/powershell/v3/models/kba-auth-response-item
tags: ['SDK', 'Software Development Kit', 'KbaAuthResponseItem']
---
# KbaAuthResponseItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**QuestionId** | Pointer to **String** | The KBA question id | [optional]
**IsVerified** | Pointer to **Boolean** | Return true if verified | [optional]
## Examples
- Prepare the resource
```powershell
$KbaAuthResponseItem = Initialize-PSSailpoint.V3KbaAuthResponseItem -QuestionId 089899f13a8f4da7824996191587bab9 `
-IsVerified true
```
- Convert the resource to JSON
```powershell
$KbaAuthResponseItem | ConvertTo-JSON
```
[[Back to top]](#)