Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/VerificationResponse.md
2025-05-07 14:37:48 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
verification-response VerificationResponse VerificationResponse VerificationResponse powershellsdk
powershell
PowerShell
sdk
VerificationResponse
VerificationResponse
/tools/sdk/powershell/v3/models/verification-response
SDK
Software Development Kit
VerificationResponse
VerificationResponse

VerificationResponse

Properties

Name Type Description Notes
RequestId String The verificationPollRequest request ID [optional]
Status Enum [ "PENDING", "SUCCESS", "FAILED", "LOCKOUT", "NOT_ENOUGH_DATA" ] MFA Authentication status [optional]
VarError String Error messages from MFA verification request [optional]

Examples

  • Prepare the resource
$VerificationResponse = Initialize-VerificationResponse  -RequestId 089899f13a8f4da7824996191587bab9 `
 -Status SUCCESS `
 -VarError Unable to connect DUO Service during verification
  • Convert the resource to JSON
$VerificationResponse | ConvertTo-JSON

[Back to top]