Subscription Filter For Null Check

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

1 Like

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