I want to check if myAttribute value changed from having @ to null. Is the below filter correct for Identity Attributes Changed trigger.
$.changes[?(@.attribute == “myAttribute” && @.newValue == null && @.oldValue contains “@”)]
I want to check if myAttribute value changed from having @ to null. Is the below filter correct for Identity Attributes Changed trigger.
$.changes[?(@.attribute == “myAttribute” && @.newValue == null && @.oldValue contains “@”)]
Yes !
$.changes[?(@.attribute == "attributeName" && @.newValue == null && @.oldValue contains "@")]
is correct filter . You can validate your filters at SailPoint Developer Community .
Thanks
Sid
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.