Notes
A Subflow is a Flow that is called and executed from within another (main) Flow. It allows you to build modular and reusable logic by encapsulating specific functionality into a separate Flow. This can simplify complex Flows and promote consistency across processes.
Key Features of Subflows:
- Reusability: Common processes, such as sending an email, updating records, or calculating values, can be designed once in a Subflow and reused across multiple parent Flows.
- Modular Design: Breaking down large or complex Flows into smaller Subflows makes them easier to maintain and debug.
- Inputs and Outputs: Subflows can accept input variables from the parent Flow and return output variables, allowing data to flow between them.