Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/KbaAuthResponse.md
2025-02-20 12:59:19 -05:00

1012 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-kba-auth-response KbaAuthResponse KbaAuthResponse KbaAuthResponse pythonsdk
python
Python
sdk
KbaAuthResponse
BetaKbaAuthResponse
/tools/sdk/python/beta/models/kba-auth-response
SDK
Software Development Kit
KbaAuthResponse
BetaKbaAuthResponse

KbaAuthResponse

Properties

Name Type Description Notes
kba_auth_response_items []KbaAuthResponseItem [optional]
status Enum [ 'PENDING', 'SUCCESS', 'FAILED', 'LOCKOUT', 'NOT_ENOUGH_DATA' ] MFA Authentication status [optional]
}

Example

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]