Filter Settings in Azure AD Connector

Which IIQ version are you inquiring about?

8.3p2

Hi, I need to aggregate single account from Azure to SailPoint… How and where we should use this “User Filters” to aggregate only single account. Do we need to add this in application XML or somewhere else?
entry key=“userFilters” value=“(startswith(displayName,‘xyz’))” - is this correct?

The below line is available in documentation but its not clear where we should use this,
“Set the User Filters to define the scope of Accounts applied during account aggregation. For example, to aggregate those Microsoft Entra ID users who are active, use accountEnabled eq true.”

Hi @DharshiniB,

you must to add this key to enable the support for advanced filter xml:

<entry key="supportsAdvancedAccountFilter" value="true" />`

and this for accont filter:

<entry key="connector_userFilters" value="(startswith(displayName,'A') and accountEnabled eq true)"/>

or this for gorup filter:

<entry key="groupFilters" value="(startswith(displayName,'A') or startswith(displayName,'B'))"/>

PS you can findo more info there :Azure Active Directory Connector

This needs to be added in application xml and after that we can run account aggregation task so that will bring the data we filtered right?

yes @DharshiniB, it is like that.

PS Adjust the filter as you want

Thank you for the response @enistri_devo. Just trying to aggregate single user from target using this
entry key=“userFilters” value=“(startswith(displayName,‘Name’))”. Hope this will work!.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.