Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

How to add entitlement map to multiple entitlements?

deepali198
New Contributor
New Contributor

Is there any way to add entitlement map to the multiple entitlements?

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

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

NM
Honored Contributor II
Honored Contributor II

Hi @deepali198 , yes adding manually is the only option.

Amit_Malik
Valued Contributor II
Valued Contributor II

Hi @deepali198 , we have written a java code to automate that. One of the target team was creating these maps and we need to read those frequently and update deltas. Below API can be used.

If not Java same can be achieved via postman scripting and running collections

 

https://abc/ECM/api/v5/createUpdateEntitlement

 
 
{   "endpoint":E1",   "entitlementtype":"AADGroup",   "entitlement_value":"aaa",   "entitlementID":"test12355ggdgd555",   "entitlementmap": [{"entitlementvalue":"aaa Printing", "entitlementtype":"Groups", "endpoint":"E2", "requestfilter":true, "excludeentitlement":true, "adddependenttask":true, "removedependententtask":true, "updateType":"ADD"}] }
 
 
{     "msg": "Successful in saving entitlement map",     "entitlementObj": {         "customproperty10": "true",         "syscritical": "0",         "entitlement_valuekey": "5230",         "endpointKey": 11,         "entitlementID": "test12355ggdgd555",         "description": "Printing Development Team for",         "entitlementOwner": "",         "entitlementTypeName": "AADGroup",         "entitlementType": "AADGroup",         "entitlement_glossary": "",         "entitlementTypeKey": 442,         "endpoint": "E1",         "requestForm": "Request Form Table",         "displayname": "",         "soxcritical": "0",         "customproperty8": "false",         "entitlement_value": "",         "status": "1"     },     "errorCode": "0" }

 

Kind Regards,
Amit Malik
If this helped you move forward, please click on the "Kudos" button.
If this answers your query, please select "Accept As Solution".