The one sentence every automation is
Every automation is a single sentence: WHEN this happens, DO this. The when is a trigger. The do is an action. If you can say it out loud, you can build it.
WHEN a contact form is submitted, DO add the person to the CRM and send a thank-you email.
The six words
- Trigger (the IF). The event that starts it: a new form, a missed call, a set time of day. Nothing happens until the trigger fires.
- Action (the THEN). What it does after: add a record, send a message, create a task. One trigger can kick off several actions.
- API (the waiter). How two apps talk. You give the waiter your order, the waiter carries it to the kitchen, and brings your food back. You never walk into the kitchen, and the kitchen only serves what is on the menu. When a tool says connect via API or API key, it just means this is the doorway other software uses to talk to me. You almost never touch it directly.
- Webhook (the text when the package arrives). A reverse API. Instead of walking to the mailbox over and over to check, a webhook sends you a text the moment the package is delivered. It is faster and lighter, and it is often the advanced trigger option when the simple one is not quick enough.
- Field mapping (addressing an envelope). Telling the automation that Full Name over here goes in the Customer box over there. Get it backwards and the letter still sends, it just lands wrong. Most tools let you drag one field onto another, no typing.
- Connection (a badge, not your house keys). The secure link that proves your automation is allowed to act for you inside another app. You log in once and grant permission, and the tool stores a temporary pass called a token. It is a visitor badge, not your password, and it can expire.
The four mistakes that break automations
Almost every broken automation is one of these, and all four are preventable:
- 1The connection quietly expired. This is the number one reason something that ran for months suddenly stops. It is not a bug; the token expired or the app changed its permissions. Re-check connections and watch for reconnect account alerts.
- 2Duplicate triggers. Two automations watching the same event make double records and double emails. Use one watcher per event and a find or create step.
- 3It triggered itself in a loop. If an automation writes back to the very thing it watches, it sets itself off again and again. Never have it update the sheet or record it is watching.
- 4No failure alarm. A silent break means you hear about it from an angry customer. Turn on failure notifications so a broken run emails you, not your client.
The throughline: run one real test and turn on failure alerts before you trust anything. That is the same discipline as the guardrails resource.