Sparround

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
AreaReal automation exampleWhat it saves
Sales / CRMLead from a website form → a card is created in the CRM → a Slack ping to the sales repLead response time drops from hours to seconds
Finance / reportingEvery morning at 8, transactions are pulled from a bank API → written to Google Sheets → a summary email to managementThe 30-40 minutes a day spent assembling the report by hand
Support / helpdeskNew ticket → AI assigns a category and priority → routed to the right teamTriage effort and mis-routed tickets
HRNew hire created in the HR system → Google account, Slack invite and equipment task are opened automaticallyThe forgotten steps in an onboarding checklist
MarketingAn RSS or social feed is watched → AI writes a summary → sent to Telegram for approvalThe time spent monitoring content
IT / DevOpsA service health check every 5 minutes → on failure, a call/message to the on-call plus a Jira ticketTime to detect an incident (MTTD)
Document processingA PDF invoice arrives by email → text is extracted → AI fills the fields → written into the accounting systemManual 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