Versions Compared

Key

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

Overview

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

When the workflow trigger event occurs the trigger will check that any required conditions are met, and if met the "set-expiration" action sets a new expiration date. The due date is a period in the ISO 8601 format 8601 format .

"set-expiration"

Excerpt

"set-expiration" will set an expiry period for a state.

  • action (set-expiration)

  • dueDate (string) ❗️

     Due

     Due date in format ISO 8601

❗️ indicates a mandatory parameter -  a "dueDate" parameter value must be specified

Code Block
"triggers":
[
	{"event": "on-change-state",
	"conditions":
	[
		{"final": "true"}
	],
	"actions":
	[
		{"action": "set-expiration",
			"dueDate": "P6M"}
	]}
]

(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.

The "dueDate" period is set using ISO 8601 format. For example "P6M3W5D" will be 6 months, 3 weeks and 5 days from the date of transition into the state. This will override any existing expiration periods.

(green star) An existing expiration period can be removed using the "clear-expiration" action.

List of trigger Trigger actions

Child pages (Children Display)
pageJSON Trigger actions