-
Finish Workflow
When a workflow is initiated by another existing workflow, the existing one pauses as the sub-workflow begins to run. Upon finishing the sub-workflow, it is then terminated while the first workflow resumes and becomes active again. However, if the sub-workflow happens to be the root workflow, it cannot be terminated.…
-
Step Transition
Starts a transition from one step in a workflow to another step in the same workflow, if it exists. Identifier: step_transition Attributes to: Name of the step in the same workflow that should be started. Required: Yes Default value: None delay: Set a delay for the transition until it is triggered. Delay is in…
-
Start Workflow
Starts a sub-workflow while putting your current workflow on pause. Once the sub-workflow finishes, the initial workflow becomes active again. Usable within components by combining it with start_task_from_template. Identifier: start_workflow Attributes wf: ID of the sub-workflow that will be started Required: Yes Default…
-
Start Task from Template
Creates a new task based on a template you create for your workflow. Identifier: start_task_from_template Elements wf: The name of the template you created for the workflow. Required: Yes Default Value: Empty close_ongoing: Decides whether the ongoing task should be set to "Done". Required: No Default Value: False…
-
Pause Task
Pauses a task and returns the user to the task list. The task state is not lost and can be finished later. Identifier: pause_task Example Minimal: <pause_task id="pause"/>