What automation is and what you can automate
n8n is a platform for automating business processes visually. You wire nodes together on a canvas, and each node performs one step: fetching data, processing it, or sending it on to another system.
The most practical way to think about automation is to ask: "Which person does this work, when, and in which systems?" If the answer contains three elements — a triggering event, moving data between several systems, and repetition — the work is a candidate for automation.
Being "low-code" puts n8n between two poles:
- It is more powerful than fully no-code tools like Zapier — you can call any API, write JavaScript, and build conditions and loops
- It is faster than writing your own script — authentication, retries, scheduling and logging come built in
| Area | Real automation example | What it saves |
|---|---|---|
| Sales / CRM | Lead from a website form → a card is created in the CRM → a Slack ping to the sales rep | Lead response time drops from hours to seconds |
| Finance / reporting | Every morning at 8, transactions are pulled from a bank API → written to Google Sheets → a summary email to management | The 30-40 minutes a day spent assembling the report by hand |
| Support / helpdesk | New ticket → AI assigns a category and priority → routed to the right team | Triage effort and mis-routed tickets |
| HR | New hire created in the HR system → Google account, Slack invite and equipment task are opened automatically | The forgotten steps in an onboarding checklist |
| Marketing | An RSS or social feed is watched → AI writes a summary → sent to Telegram for approval | The time spent monitoring content |
| IT / DevOps | A service health check every 5 minutes → on failure, a call/message to the on-call plus a Jira ticket | Time to detect an incident (MTTD) |
| Document processing | A PDF invoice arrives by email → text is extracted → AI fills the fields → written into the accounting system | Manual data entry and typos |
Every one of those examples has the same three-part shape, and that shape maps directly onto nodes in n8n:
- Trigger — when it starts: a time, a webhook, a new email, a new row
- Processing — what happens to the data: filtering, reshaping, conditions, AI
- Result — where it goes: an API, a database, a message, a file
In an interview, answer "where have you used n8n?" with exactly this structure — describe which problem you solved, not a list of node names.
Some work is not worth automating. A process run once a month, one that needs a fresh judgement call each time, or one where a mistake is expensive (sending a payment without approval) should either stay manual or be built with an explicit human approval step. Being able to say this in an interview signals maturity.
📚 Sources and documentation
- n8n documentation — get startedofficialdocs.n8n.io
- Workflow template libraryofficialn8n.io
Nearly every scenario above already exists here as a template — open one and look at its nodes.
- Key concept glossaryofficialdocs.n8n.io
Node, trigger, cluster node, credential — the official definitions of the terms.