PARTNERS - Please join us for our upcoming webinar:
Leveraging Intelligent Recommendations for Operational Transformation.
AMS Partners click HERE | EMEA/APJ Partners click HERE

How to delete or set status of an entitlement to inactive if deleted in Rest based endpoint

VamsheeVazza
New Contributor III
New Contributor III

Hi 

We have an endpoint with rest connector with account and entitlement import.

when some entitlements are deleted in the endpoint, Saviynt is still sowing those entitlements in the request form.

How can we resolve this?
we should either delete them in saviynt as well which I think we cant
or we should set the status of those entitlements to inactive and not pull those in the request form.

2 REPLIES 2

PremMahadikar
All-Star
All-Star

HI @VamsheeVazza ,

Similar articles below with accepted solutions, please refer..

 "disableDeletedEntitlements": true

 

If this helps, please consider selecting Accept As Solution and hit Kudos

rushikeshvartak
All-Star
All-Star

Refer - https://forums.saviynt.com/t5/identity-governance/rest-connector-all-entitlements-inactivated-in-sav...

 entThresholdValue need to be defined in StatusThresholdConfig block for the doNotChangeIfFailed tag defined in importAcctEntJson to work as expected.

 

 "doNotChangeIfFailed": true,

{
  "statusAndThresholdConfig": {
    "accountThresholdValue": 100,
    "inactivateAccountsNotInFile": true,
    "statusColumn": "customproperty30",
    "activeStatus": [
      "ENABLE",
      "PROVISIONED"
    ],
    "inactivateEntsNotInFeed": true,
    "entThresholdValue": {
      "entType": {
        "Group": {
          "ent": 100
        },
        "Role": {
          "ent": 100
        }
      }
    }
  }
}

 

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.