null


Skip to end of banner
Go to start of banner

JSON Triggers

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Overview

You can use workflow triggers to help automate your documentation process and flexibly respond to workflow events. For example, you can use a trigger to automatically send an email when a page is submitted for review.

Triggers can be added to

  • listen for workflow events

  • check for a set condition or conditions to be met for each event

  • set one or more actions for each event

A custom workflow can include one or more workflow triggers. A workflow trigger is added as JSON code using the workflow builder or the JSON editor.

Triggers

A JSON trigger contains three different properties

Multiple triggers can be added to a workflow. A trigger for an event must include at least one or more actions.

You can /wiki/spaces/CDMCD/pages/614010813.

cdmc_workflowbuilder_viusal_editworkflow_addtrigger_withvisualworkflowdiagram.png

Example

In a 4-state workflow, you might want the workflow to move immediately from a Rejected state to a more proactively named Triage state rather than waiting for a user to manually transition the content.

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

The trigger is created using JSON code.

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

If you want to add this trigger to a workflow using workflow builder, copy and paste the JSON code format (without the opening "triggers": JSON markup notation) to the Triggers dialog in the Edit Workflow panel in workflow builder.

There are a number of workflow events that can be added to a trigger. For each trigger, you can set one or more conditions, for example, to constrain a trigger to listen for an event that occurs in a particular state. One or more actions can be added to a workflow trigger that are undertaken when the event takes place.

Each trigger action can have a number of mandatory elements and optional elements depending on the action.

Related pages

Triggers

Using Workflow Builder


  • No labels