How can I find which application is connected or disconnect via rule

Which IIQ version are you inquiring about?

Version 8.3

Share all details related to your problem, including any error messages you may have received.

How can I find which application is connected or disconnect via rule in sailpoint iiq.

@amanKsingh

Just get the application object , get Type using getType() method

For example application name is appName

Application appObj=context.getObjectByName(Application.class, appName);
String type=appObj.getType();

This gives type of connector you have used to identify weather its a disconnected or any OOTB or Custom connector is used

it gives type of application. I need when i am putting appName as application name it should show whether it is connect or disconnect.

@amanKsingh

What is the type for your disconnected apps within your system, are you having multiple types for disconnected applications, I believe you will have few Standard types like Delimited and May be custom Disconnected type

Just have this in a custom object and validate against the same on type if it matches , application is connected and if not disconnected.

Another option would be depending on featureString of application but again this depends on your implementation within project what type of app you acually consider disconnected

Just check if getFeaturesString() does not contain Provisioning kind.

Hi @amanKsingh,

If your question is more towards connector that you are using for application onboarding being connected or disconnected then you may use the

debug page of your sailpoint -->From there you can select Configuration-->Then open ConnectorRegistry.

It will have all template connector and their feature string.

Thanks

You can get the details of the FeaturesString from Application object to get if the application is connected or not .

FYI,
Even connected application can be made as disconnected by updating the FeaturesString string . for example if you remove PROVISIONING from AD it will be more like disconnected even though ootb it’s connected application.

I think he is asking for “Test Connection” using a rule. I don’t believe there is an api to do that.

For test connection this below can be used .

1 Like

I stand corrected. Thanks @vishal_kejriwal1

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