starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,35 @@
---
id: beta-kba-auth-response
title: KbaAuthResponse
pagination_label: KbaAuthResponse
sidebar_label: KbaAuthResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'KbaAuthResponse', 'BetaKbaAuthResponse']
slug: /tools/sdk/python/beta/models/kba-auth-response
tags: ['SDK', 'Software Development Kit', 'KbaAuthResponse', 'BetaKbaAuthResponse']
---
# KbaAuthResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**kba_auth_response_items** | [**[]KbaAuthResponseItem**](kba-auth-response-item) | | [optional]
**status** | **Enum** [ 'PENDING', 'SUCCESS', 'FAILED', 'LOCKOUT', 'NOT_ENOUGH_DATA' ] | MFA Authentication status | [optional]
}
## Example
```python
from sailpoint.beta.models.kba_auth_response import KbaAuthResponse
kba_auth_response = KbaAuthResponse(
kba_auth_response_items=[{questionId=089899f13a8f4da7824996191587bab9, isVerified=false}],
status='PENDING'
)
```
[[Back to top]](#)