action
Built-in action steps for use inside a Flow or Subflow via wfa.action().
Custom Action
API reference for the Action() constructor, the wfa.actionStep() invocation helper for embedding OOB steps, and the wfa.assignActionOutputs() output helper.
Flow
Creates a Flow record (syshubflow) that defines a series of actions to execute when triggered.
FlowStage
Declares a named stage for tracking Flow execution progress. Stages are defined in the Flow config stages property using FlowStage() and activated in the flow body using wfa.stage().
Subflow
API reference for the Subflow() constructor, the wfa.subflow() invocation helper, and the wfa.flowLogic.assignSubflowOutputs() output helper.
trigger
Trigger definitions for starting a Flow. Pass a trigger as the first argument to wfa.trigger().
wfa
The wfa (Workflow Automation) 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/elseIf/else, forEach, doInParallel, tryCatch, appendToFlowVariables).
Flow Logic
The wfa.flowLogic namespace provides control flow operators for branching, looping, and flow control within Flow and Subflow bodies.