Hi!
You can write a little Customization Rule for Azure application that checks if the account type is “Guest” and then return null.
This way you won’t be getting these accounts back to IdentityIQ.
Hope this helps you!
Hi!
Yes, but remember that after that rule, you will need to run an “Account Aggregation” with the “Detect deleted accounts” checked to delete the “Guest” or whatever accounts you are excluding in the rule.
Best regards.
I was trying ‘account.getStringAttribute’, but that gave me errors. I looked at a different customization rule and saw it was using ‘object.getStringAttribute’, but still not having luck getting the accounts re-aggregated, but it did stop erroring…
if (object.getAttribute("userType") != null){
if (object.getStringAttribute("userType").equals("Guest")){
return null;
}
}
return object;
Personally I had some troubles in IdentityIQ when comparing Strings with “==” and “!=”, I highly recommend to use “equals” method instead for this kind of conditionals.
I can’t thank you enough for your help and extra guidance! That did the trick.
You don’t know how valuable the help I get from members of this forum is to me! I’ll continue to learn bit by bit thanks to folks like you.