Workflow Triggers. Adding multiple Identity Attribute Changes

I am attempting to utilize multiple Identity Attributes within the Workflow Trigger “Identity Attributes Changed”. I am having difficulty with the syntax of a multi-attribute filter.

The workflow wizard description says, “One or more identity attributes changed.”

The basic filter seems to be limited to a single selectable attribute. I know I need to utilize the Advanced filter to input more than 1 attribute. I’m trying to figure out how to put a simple “or” statement. Ideally I want to select ‘manager’ or ‘jobCode’ or ‘title’.

I see some forum posts mentioning “size 1”, but I am not certain what that means (or if it is useful for my task).

Does anyone have any functional filters that trigger off of one or more attribute changes?

Hi @RPook , Currently I am working on similar use case. Try this, in the trigger advanced filter you can use this format i.e. $.changes[?(@.attribute == “firstAttribute” || @.attribute == “secondAttribute” || @.attribute == “thirdAttribute”)]

Then create separate operator for each attribute.
i.e. Operator example: Value 1: $.trigger.changes[?(@.attribute == “firstAttribute”)].attribute ; Value 2: firstAttribute ; comparison operator use Matches

2 Likes