Skip to main content

Requestability

Properties

NameTypeDescriptionNotes
CommentsRequiredBooleanIndicates whether the requester of the containing object must provide comments justifying the request.[optional] [default to $false]
DenialCommentsRequiredBooleanIndicates whether an approver must provide comments when denying the request.[optional] [default to $false]
ReauthorizationRequiredBooleanIndicates whether reauthorization is required for the request.[optional] [default to $false]
ApprovalSchemes[]AccessProfileApprovalSchemeList describing the steps involved in approving the request.[optional]

Examples

  • Prepare the resource
$Requestability = Initialize-PSSailpoint.V2025Requestability  -CommentsRequired true `
-DenialCommentsRequired true `
-ReauthorizationRequired true `
-ApprovalSchemes null
  • Convert the resource to JSON
$Requestability | ConvertTo-JSON

[Back to top]