Skip to main content

Approvalreminderandescalationconfig

Configuration for approval reminder and escalation behavior. Important: Modifying this object will override the sp-approval service's reminderConfig and escalationConfig settings. Changes made here take precedence over any configuration set directly in the sp-approval service.

Properties

NameTypeDescriptionNotes
days_until_escalationintNumber 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]
days_between_remindersintNumber of days to wait between reminder notifications.[optional]
max_remindersintMaximum number of reminder notifications to send to the reviewer before approval escalation. The maximum allowed value is 20.[optional]
fallback_approver_refIdentityreferencewithnameandemail[optional]
}

Example

from sailpoint.access_requests.models.approvalreminderandescalationconfig import Approvalreminderandescalationconfig

approvalreminderandescalationconfig = Approvalreminderandescalationconfig(
days_until_escalation=0,
days_between_reminders=0,
max_reminders=1,
fallback_approver_ref=sailpoint.access_requests.models.identity_reference_with_name_and_email.Identity Reference With Name And Email(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e',
name = 'Alison Ferguso',
email = 'alison.ferguso@identitysoon.com', )
)

[Back to top]