Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalReminderAndEscalationConfig.md
2025-04-01 09:23:12 -04:00

1.6 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
v2025-approval-reminder-and-escalation-config ApprovalReminderAndEscalationConfig ApprovalReminderAndEscalationConfig ApprovalReminderAndEscalationConfig powershellsdk
powershell
PowerShell
sdk
ApprovalReminderAndEscalationConfig
V2025ApprovalReminderAndEscalationConfig
/tools/sdk/powershell/v2025/models/approval-reminder-and-escalation-config
SDK
Software Development Kit
ApprovalReminderAndEscalationConfig
V2025ApprovalReminderAndEscalationConfig

ApprovalReminderAndEscalationConfig

Properties

Name Type Description Notes
DaysUntilEscalation Int32 Number 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]
DaysBetweenReminders Int32 Number of days to wait between reminder notifications. [optional]
MaxReminders Int32 Maximum number of reminder notification to send to the reviewer before approval escalation. [optional]
FallbackApproverRef IdentityReferenceWithNameAndEmail [optional]

Examples

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

[Back to top]