Skip to main content

KbaQuestion

Properties

NameTypeDescriptionNotes
IdStringKBA Question Id[required]
TextStringKBA Question description[required]
HasAnswerBooleanDenotes whether the KBA question has an answer configured for any user in the tenant[required]
NumAnswersInt32Denotes the number of KBA configurations for this question[required]

Examples

  • Prepare the resource
$KbaQuestion = Initialize-PSSailpoint.V2024KbaQuestion  -Id 143cfd3b-c23f-426b-ae5f-d3db06fa5919 `
-Text [{"text":"Nouvelle question MFA -1 ?","locale":"fr"},{"text":"MFA new question -1 ?","locale":""}] `
-HasAnswer true `
-NumAnswers 5
  • Convert the resource to JSON
$KbaQuestion | ConvertTo-JSON

[Back to top]