final condition

Overview

One or more conditions can be set for a trigger for a named event in the workflow.

Adding the "final":true condition to a trigger listens for the trigger event when the document is in the final state.

  • the condition is a boolean condition with a value of true or false

When the named workflow event occurs the trigger checks that any required condition is met and sets one or more actions if met.

If "final" condition is added together with another condition to an event, the condition is evaluated as an OR function.

 



JSON Condition

JSON Code

Note

JSON Condition

JSON Code

Note

"final": (boolean true/false)

"conditions": [ {"final":true} ],



The trigger action occurs if the state for the event is the final state.

For example, 

  • "event":"on-change-state", "conditions":[{"final":true}],

This "on-change-state" event condition is met on the the change to the final state in the workflow.

The final parameter value is a boolean condition

  • "final":true

  • "final":false

If the final condition is added to an event with a state condition, the two conditions are evaluated as an OR function.

Example on-change-state event

JSON trigger conditions