Start node is the entry point for a flow. Every service or flow should start with a Start node.

When you create a Start node and call the flow, a system-defined object called bh is created by default. When you create input and local properties in the Start node, they are added to the bh object. Therefore, every input property can be referenced using bh.input.<property> and every local property can be referenced using bh.local.<property> from the node's attributes window. If you want to access the local and input properties outside the flow, you should set them as output variables. See Setting a property as an output variable to learn more.

How to Use

Associated Attributes

Start node After the properties are defined, you can reference the input property by using bh.input.<property_name> and the local property by using the bh.local.>property_name> in any node of the flow.