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

Import only certain groups using Azure AD OOTB connector

Sharan
New Contributor III
New Contributor III

Hi,

we are trying to import only certain groups which names starts with 'AZ' from Azure AD to saviynt using OOTB Azure AD connector.

anyone Please let me know how to filter only the groups in  starts with 'AZ'

 

Thanks,

Sharan

4 REPLIES 4

Srinivas
Saviynt Employee
Saviynt Employee

Hello @Sharan 

I suppose this can be achieved by setting Import type to "Custom_access AAD Import.

Thanks & Regards

Srinivas

Sharan
New Contributor III
New Contributor III

Hi Srinivas,

Thank you for the quick response. we have the following requirement,

Client has on-prem AD and Azure AD and groups are being replicated from AD to AAD. we want to import in saviynt only the groups from AAD that are not present in AD. we can identify this groups based on their names (specific letters, like starts with 'AZ'). 

we do have following questions,

if we put the below values in entitlement_filter will it work?

startswith(displayname,'AZ*')

Could you please provide an example for import_config for import_type custom_access to include only this groups specified.

Thanks,

Sharan

Can you try something like below and check? 

{
	"importEntTypes": {
		"AADGroup": {}
	},
	"ENTITLEMENT_FILTER_JSON":	{
		"group_filter":"startswith(displayname,'AZ')&$count=true"
	}
}
KA

Sharan
New Contributor III
New Contributor III

Thank you!! It worked by adding the filter in entitlement_filter_json

{
		"group_filter":"startswith(displayname,'AZ')&$count=true"
	}