The toolbar
Activating is the only thing that can be refused. If the server rejects the save it
returns the first problem and where it is, and the automation is left as it was.
Adding a step
Add step sits at the top left of the canvas and opens the picker. It has a search box, a category rail down the left (All, the seven step categories, and Apps), and the steps themselves in two columns. Three kinds of entry appear there:- Built-in steps, grouped by category — Messaging, Contact, Deals & team, Conversation, Logic & timing, Data, Orchestration.
- Google actions, one row per action (“Google Sheets · Append row”), delivered through the Apps Script bridge. A row is marked set up first when the bridge is not connected yet.
- Other services — Slack, Notion, Airtable and the rest. Each one adds an HTTP request step with that service’s URL shape pre-filled; you supply the key. The card says which key before you pick it. See Other services.
Moving steps and wiring branches
Drag a card to arrange the canvas; positions are saved with the automation. The first time you open an automation that has never been arranged, the whole graph is laid out automatically. Dragging from a card’s output port onto another card is a move, not a link:- From an ordinary step’s port, the target becomes the next step in that sequence.
- From a Yes or No port, the target moves to the top of that branch.
- From the trigger, the target becomes the first step of the automation.
Below 1024px wide the canvas stays readable but stops being wireable — the ports are
too small for a finger. Tapping a card still opens its settings, which slide in from
the right.
The settings panel
The panel has three tabs. Setup shows the step type (with Change to swap it), Runs on — one sentence saying whether this step works on every channel this automation can fire on — and the category with its one-line description. Configure holds the step’s own fields, plus two collapsible sections:- Advanced — If this step fails (Stop the run, the default, or Carry on to the
next step), Also save the result as (a short name so the output reads
{{ vars.order }}instead of the full step path), and Note for your team, which is never sent anywhere. - What this step produces — every value this step publishes. Click one to copy its token.
Reference names
Every step has a reference name shown under the panel header assteps.<name>. It is how
other steps address this one — {{ steps.lookup.body.id }} — so it is the identity that
matters, not the position on the canvas.
- Letters, numbers and underscores only. Anything else is converted when you click away.
- It must be unique; a name already in use is refused and the field reverts.
- The copy button next to it copies the token.
- Renaming a step does not rewrite tokens elsewhere. The checks panel flags any token now pointing at a name that does not exist.
- Changing a step’s type keeps the reference name — so tokens still resolve — but resets the settings, because they belonged to the old type.