Switch between Webservice connector operations

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.

I’m doing a webservice connector and due to logic processing I want to know if there is a way to go to the next connector operation,
As I have to add entitlements:
add entitlment 1
add entitlment 2

I have a before an operating rule in add entitlment 1, from that point when processing my logic I want to say to not do add entitlment 1 but do add entitlment 2

thanks

Hi @massinissa,

If I am getting your use-case correctly then you want to prevent one entitlement from provisioning based upon some condition. If this is the case, then you can leverage before operation rule and change the body content.

In ideal case if there are some pre-defined generic filter criteria then you can do it in the LCM flow itself.

Let me know if there is a gap in understanding the use-case.

Thanks

Hi ,

the first add entitlment has POST method
the second add entitlment PATCH method with a different body

on some condition i want is to do PATCH

You can handle this in your before Operation Rule

Check the plan and entitlement part of the plan and then you can set Http Operation, body etc. whatever you want based on conditions.

requestEndPoint.setHttpMethodType("PATCH")

and for body you can use

requestEndPoint.setBody(java.util.Map value)

Above is the example

If you have not gone through, please go through the doc below, it has a detailed explanation of methods you can use on your requestEndPoint

IdentityNow Rule Guide - Web Services Before Operation Rule - Compass (sailpoint.com)

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