Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Bulk AD Entitlement Assignment Via Saviynt

n1kh1l
New Contributor
New Contributor

Hi All,

Just wanted to confirm if there is any way to Bulk Assigning a AD Entitlement to around 6k users via Some Upload or API Call ?

Thanks.

2 REPLIES 2

Hemanath
Saviynt Employee
Saviynt Employee

Hi @n1kh1l , could you please elaborate more on your requirement 

dgandhi
All-Star
All-Star

Hi,

If I understand correctly , you want to assign an entitlement to 6k users AD account. If that is the ask then you can explore the option of Actionable Analytics:

Below is the link:

https://docs.saviyntcloud.com/bundle/EIC-Admin-v2021x/page/Content/Chapter17-EIC-Analytics/Configuri...

Provision Access

When Provision Access is configured as an allowed action, it allows you to assign the account to a particular access. When this action is performed on a record, an Add Access task is created in the target application.

The Analytics query must have the columns given below:
entvaluekey - Entitlement value key of the entitlement to which the account will be assigned.
acctKey - Accountkey of the account to provision with the entitlement.
accName - Name of the account to provision with the entitlement.
userKey - Userkey of the user to whom the account is mapped.

Sample query:

SQL
select ev.entitlement_valuekey as entvaluekey, a.accountkey as acctKey, a.name as accName,u.userKey from entitlement_values ev, entitlement_types et, accounts a, user_accounts uwhere ev.entitlementtypekey=et.entitlementtypekey and et.endpointkey=6 and a.accountkey in(select accountkey from accounts where endpointkey=6) and u.ACCOUNTKEY=a.ACCOUNTKEY;
 

This action can also be configured as a default action, i.e., it will be automatically performed when the Analytics control is executed. Note that this default action is applicable when the Analytics control is scheduled for execution from the Admin > Job Control Panel > Analytics jobs.

 

Thanks

Devang

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.