Json Path filter not working

Hello,
I am looking to filter events for trigger “source account created”. Looking to trigger the workflow only when active directory account is created.

I am not sure why this is not working. I tried both json path filter below:
$[?($.sourceName == “Active Directory”)]
$[?(@.sourceName == “Active Directory”)]

Has anyone else faced this?

you could try something like this.

Yes I do have that compare string already however I wanted to add json filter in the trigger itself because it is highly recommended by Sailpoint.

Hi @salam1,
Can you try our evaluator tool?

@salam1 I tried below with SailPoint Json path evalautor tool and its working
Check double quotes

$[?($.sourceName == “Active Directory”)]

1 Like

thank you very much!