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,37 @@
---
id: beta-kba-auth-response-item
title: KbaAuthResponseItem
pagination_label: KbaAuthResponseItem
sidebar_label: KbaAuthResponseItem
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'KbaAuthResponseItem', 'BetaKbaAuthResponseItem']
slug: /tools/sdk/powershell/beta/models/kba-auth-response-item
tags: ['SDK', 'Software Development Kit', 'KbaAuthResponseItem', 'BetaKbaAuthResponseItem']
---
# 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.BetaKbaAuthResponseItem -QuestionId 089899f13a8f4da7824996191587bab9 `
-IsVerified true
```
- Convert the resource to JSON
```powershell
$KbaAuthResponseItem | ConvertTo-JSON
```
[[Back to top]](#)