Hello everyone,
I would like to create reminders for approvers so requests are not pending approval for days. Currently, it looks like by default, no reminders are sent. Reference - API to set global reminders and escalation policies for access request approvals - Compass
Looking at the access request api doc - set-access-request-config | SailPoint Developer Community
This is our current setting:
{
"approvalsMustBeExternal": false,
"autoApprovalEnabled": true,
"reauthorizationEnabled": false,
"requestOnBehalfOfConfig": {
"allowRequestOnBehalfOfAnyoneByAnyone": true,
"allowRequestOnBehalfOfEmployeeByManager": false
},
"approvalReminderAndEscalationConfig": {
"daysUntilEscalation": null,
"daysBetweenReminders": null,
"maxReminders": null,
"fallbackApproverRef": null
},
"entitlementRequestConfig": {
"allowEntitlementRequest": true,
"requestCommentsRequired": false,
"deniedCommentsRequired": false,
"grantRequestApprovalSchemes": null,
"revokeRequestApprovalSchemes": null
},
"govGroupVisibilityEnabled": false
}
If I need to just enable reminders do I need a put request with the below?
{
"approvalsMustBeExternal": false,
"autoApprovalEnabled": true,
"reauthorizationEnabled": false,
"requestOnBehalfOfConfig": {
"allowRequestOnBehalfOfAnyoneByAnyone": true,
"allowRequestOnBehalfOfEmployeeByManager": false
},
"approvalReminderAndEscalationConfig": {
"daysUntilEscalation": null,
"daysBetweenReminders": 1,
"maxReminders": 3,
"fallbackApproverRef": null
},
"entitlementRequestConfig": {
"allowEntitlementRequest": true,
"requestCommentsRequired": false,
"deniedCommentsRequired": false,
"grantRequestApprovalSchemes": null,
"revokeRequestApprovalSchemes": null
},
"govGroupVisibilityEnabled": false
}
Somewhere I read that just reminders don’t work and I have to add “daysUntilEscalation” as well. Can someone confirm expected behavior?
Thank you