Aggregation Workflow Loop on Certain Sources

Hello All,

Created a workflow to capture all Failures on aggregation however I want to limit to only 3 sources. I am not good with loops but is there any way or does someone have a sample code to help me on how i can create such an add on where the workflow will only send a email for these 3 sources fail?

Hi @ChicagoDev2025,

You can try something as below in the trigger filter and see if it works.

$[?(@.source.id=="source id1" || @.source.id=="source id2" || @.source.id=="source id3")]

This would limit the workflow to trigger only for the sources you define in the filter.

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