Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can use a trigger to listen for the state change event to the Rejected state and set this trigger action to immediately transition to the Triage state.

Code Block
"triggers":
[
   	{{
    "event":"on-change-state",
 
    "conditions":
	[
[
      {
        {"state":"Rejected"
      }
    	],
   	 "actions":
	[
      {
        "action":"change-state",
         "state":"Triage"
      }
   	 ]
  }
]


(info)  If adding the JSON trigger using workflow builder there is no need to include the opening "triggers": JSON markup notation, since It will be added by workflow builder.

...