Skip to main content

ApprovalReminderAndEscalationConfig

Properties

NameTypeDescriptionNotes
DaysUntilEscalationInt32Number of days to wait before the first reminder. If no reminders are configured, then this is the number of days to wait before escalation.[optional]
DaysBetweenRemindersInt32Number of days to wait between reminder notifications.[optional]
MaxRemindersInt32Maximum number of reminder notification to send to the reviewer before approval escalation.[optional]
FallbackApproverRefIdentityReferenceWithNameAndEmail[optional]

Examples

  • Prepare the resource
$ApprovalReminderAndEscalationConfig = Initialize-PSSailpoint.V2024ApprovalReminderAndEscalationConfig  -DaysUntilEscalation 0 `
-DaysBetweenReminders 0 `
-MaxReminders 1 `
-FallbackApproverRef null
  • Convert the resource to JSON
$ApprovalReminderAndEscalationConfig | ConvertTo-JSON

[Back to top]