Skip to main content

KbaAuthResponse

Properties

NameTypeDescriptionNotes
kba_auth_response_items[]KbaAuthResponseItem[optional]
statusEnum [ 'PENDING', 'SUCCESS', 'FAILED', 'LOCKOUT', 'NOT_ENOUGH_DATA' ]MFA Authentication status[optional]
}

Example

from sailpoint.v3.models.kba_auth_response import KbaAuthResponse

kba_auth_response = KbaAuthResponse(
kba_auth_response_items=[{questionId=089899f13a8f4da7824996191587bab9, isVerified=false}],
status='PENDING'
)

[Back to top]