Last updated 02 June 2026
Every workflow in Aitomic Flow is built from four node types on the canvas. Knowing what each type does is the foundation for designing effective workflows.
The Trigger node is the fixed starting point of every workflow. It has no configuration and no assignee — it marks where a flow begins when someone clicks Start Flow.
The Action node is where real work happens. When the workflow reaches an Action step, the system assigns it to a person and waits for them to fill in the form and click Submit.
Each Action step can be configured with:
Most workflows consist largely of Action nodes. A typical approval flow is: Submit (Action) → Approve/Reject (Action) → Process (Action).
The Branch node routes the workflow along a Yes path or a No path based on conditions you define. Conditions evaluate field values from any upstream Action step.
Use Branch nodes any time the workflow should behave differently based on an outcome — for example, routing an approved request to one team and a rejected one back to the requester.
The Complete node is the fixed end point of a workflow path. When an instance reaches Complete, it is marked as completed and no further steps are processed.
Linear (no branching):
Trigger → Action → Action → Complete
Single approval with two outcomes:
Trigger → Action (Submit) → Action (Decision) → Branch → Action (Approved path) → Complete
→ Action (Rejected path) → Complete
Multi-stage approval:
Trigger → Action → Action → Branch → Action → Complete
→ Complete