Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ApprovalReminderAndEscalationConfig.md
2025-01-28 13:29:29 -05:00

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

ApprovalReminderAndEscalationConfig

Properties

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

Examples

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

[Back to top]