Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Workflow Studio flow logic

Enable flows and subflows to specify conditional or repeated actions. Combine the elements of flow logic to create workflows in a graphical interface with little or no scripting.

The system provides these flow logic options.

Flow logic optionDescription
Assign subflow outputsSpecify the data the subflow returns when it completes running. Use subflow output as data for a parent flow or as input for another process.
Call a WorkflowRun a published and active workflow from your flow. You can use the flow data as a workflow input. For example, you can specify the current record as a workflow input.
Do the following untilApply one or more actions repeatedly until an end condition is met. You can use the flow data to specify the end conditions.
Do the following in parallelRun actions and subflows in separate paths within an isolated flow logic block.
Dynamic FlowIdentify and run a flow or subflow dynamically by using runtime data. Build templates to provide expected inputs for dynamically called flows or subflows.
End FlowStop running the current flow. Use End Flow within a branch of the flow to specify an exit condition. For example, end the flow when it reaches a specific If flow logic block.
For eachApply one or more actions to each record in a list of records.
Get Flow OutputsUse this flow logic to access flow contexts and derive the runtime values for dynamic flow outputs.
IfSelectively apply one or more actions only when a list of conditions is met.
Make a decisionYou can use the decision table branching logic in situations where multiple conditional paths are required, as an alternative to nested If, Else If, or Else flow logic. For example, if you want to determine what kind of car insurance you need, you can add inputs such as your age, accident history, and car model to the decision table to determine a level of insurance coverage. This logic can save you time and present a more readable format than nested if conditions or switch case statements.
Set Flow VariablesAssign a value to one or more flow variables, which store flow data as data pills. Access flow variable values by referring to their data pill.
TryAllow a flow to continue running when an error occurs within a flow logic block. Run a sequence of actions in response to errors within the flow logic block.
Wait for a duration of timeUse this flow logic to give your users time to act during automated processes or to wait for a specific date and time to complete actions

Flow logic inputs

Each flow logic option displays one or more fields that are used to determine its behavior. For example, the Call Workflow flow logic has an input where you are able to select a workflow to run. Use these inputs to define the behavior of the flow and enable optional functionality depending on your needs. See flow logic option documentation for a list of the available inputs and how they control the function of that element.

Flow logic outputs

Flow logic options may also have outputs. These represent information that is returned by the flow logic. For example, the Make a decision flow logic has an output that contains a decision answer record representing the decision reached by the flow. See the documentation for a flow logic option to see definitions for its outputs.

  • Append to Flow Variables flow logic
    Append a value to one or more array of objects flow variables. Use flow data to generate values.
  • Assign subflow outputs flow logic
    Specify the data the subflow returns when it completes running. Use subflow output as data for a parent flow or as input for another process.
  • Call a workflow flow logic
    Run a published and active workflow from your flow. You can use the flow data as a workflow input. For example, you can specify the current record as a workflow input.
  • Do the following until flow logic
    Apply one or more actions repeatedly until an end condition is met. You can use the flow data to specify the end conditions.
  • Do the following in parallel flow logic
    Run actions and subflows in separate paths within an isolated flow logic block.
  • Dynamic flows flow logic
    Identify and run a flow or subflow dynamically by using runtime data. Build templates to provide expected inputs for dynamically called flows or subflows.
  • End Flow flow logic
    Stop running the current flow. Use End Flow within a branch of the flow to specify an exit condition. For example, end the flow when it reaches a specific If flow logic block.
  • Exit Loop flow logic
    Exit from a flow logic loop when the conditions of an If flow logic are met. Continue running the flow from the next step after the flow logic loop. This flow logic is also known as break.
  • For Each flow logic
    Apply one or more actions to each record in a list of records.
  • Get Flow Outputs flow logic
    Retrieve output values generated by dynamic flows or subflows.
  • Go back to flow logic
    Return to a prior step in the flow to repeat a sequence of actions.
  • If flow logic
    Selectively apply one or more actions only when a list of conditions is met.
  • Make a decision flow logic
    You can use the decision table branching logic in situations where multiple conditional paths are required, as an alternative to nested If, Else If, or Else flow logic. For example, if you want to determine what kind of car insurance you need, you can add inputs such as your age, accident history, and car model to the decision table to determine a level of insurance coverage. This logic can save you time and present a more readable format than nested if conditions or switch case statements.
  • Set Flow Variables flow logic
    Assign a value to one or more flow variables, which store flow data as data pills. Access flow variable values by referring to their data pill.
  • Skip Iteration flow logic
    Skip the current iteration of a flow logic loop when the conditions of an If flow logic are met. Continue running the flow logic loop with the next item in the list. This flow logic is also known as continue.
  • Try flow logic
    Allow a flow to continue running when an error occurs within a flow logic block. Run a sequence of actions in response to errors within the flow logic block.
  • Wait for a duration flow logic
    Use this flow logic to give your users time to act during automated processes or to wait for a specific date and time to complete actions.

Parent Topic:Flows, subflows, and actions reference