action
Built-in action steps for use inside a Flow or Subflow via wfa.action().
Action
Creates a reusable custom action that encapsulates a sequence of OOB steps with typed inputs and outputs. Custom actions are invoked from inside a Flow or Subflow via wfa.action().
Flow
Creates a Flow record (syshubflow) that defines a series of actions to execute when triggered.
Subflow
Creates a reusable Subflow with typed inputs, outputs, and an optional body. Subflows are invoked from inside a Flow or another Subflow via wfa.subflow().
trigger
Trigger definitions for starting a Flow. Pass a trigger as the first argument to wfa.trigger().
wfa
The wfa (Workflow Activity) namespace provides the core building blocks for defining Flows and Subflows. Use wfa.trigger() to start a flow, wfa.action() to execute built-in actions, and wfa.flowLogic for control flow (If/Else, ForEach, GoBackTo).