Beanshell - Get Users with Disabled Link

Which IIQ version are you inquiring about?

8.4p2

Hello,

I’m wanting to try and query all identities (via a beanshell rule) that have disabled accounts.

I can grab users and check their link statuses like this

link.isDisabled()

And see if it returns true, but I’d like to pre-empt that in the filter, like this

Filter.eq("links.disabled",true);

But this doesn’t seem to work. Am I doing it wrong, or is this simply not possible?

@RSanders Try with

qo.addFilter(Filter.eq("links.iiqDisabled", true));

check some thread : Extracting, via Rule, Inactive Identities with Active Application Account in SailPoint - IdentityIQ (IIQ) / IIQ Discussion and Questions - SailPoint Developer Community

Oh, I thought I had tried that, but that seems to work! Words matter! Thank you!

1 Like

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