Skip to content
sayak.webdesignerWeb · Software · Data · AI
Data & AI · Data & AI

Connect everything you already run, without a six-month project

Between your ERP, CRM, email, WhatsApp, spreadsheets and cloud tools there are two dozen small gaps that a person bridges by hand every day. n8n closes them in days rather than quarters.

n8n automation agency indian8n consulting company kolkataworkflow automation west bengalbusiness process automation india
Webhookorder.createdPostgresenrich customerHTTPcredit checkIFlimit ok?ERPcreate SOSlackask sales headWhatsAppnotify customerSaves 6.5 hrs/day0 re-keying errors
400+
Workflows in production
6.5 hrs
Median daily hours saved per client
3–10 days
Typical workflow delivery
100%
Self-hosted, your data stays yours
The short version

Every business runs on a set of small, repetitive handoffs that nobody has ever automated because each one is individually too minor to justify a project. An order confirmation that must be copied into a spreadsheet. A form submission that should create a CRM record and notify a salesperson. A daily report that must be downloaded from one portal and uploaded to another. A WhatsApp message that should trigger a ticket.

Individually each takes five minutes. Collectively they consume several hours a day across an organisation, and they are precisely the tasks most likely to be forgotten, delayed or done wrong when someone is busy.

n8n is the tool we use to close these gaps. It is an open-source workflow automation platform with over four hundred integrations, a visual builder that non-engineers can read, and — critically — the ability to run entirely on your own infrastructure. That last point matters enormously in India: your customer data, order values and internal documents stay inside your network rather than passing through a foreign SaaS platform, and there is no per-task pricing that punishes success.

We design, build and operate n8n estates for clients ranging from twenty-person firms to multi-plant manufacturing groups. Most start with two or three workflows and end up with forty.

Why self-hosted n8n rather than Zapier or Make

Zapier and Make are excellent products and genuinely easier to start with. The reasons our clients end up on self-hosted n8n are consistent and mostly commercial.

Cost is the first. Per-task pricing looks reasonable at a few thousand operations a month and becomes punitive at scale — a workflow processing every order across a business can easily run to hundreds of thousands of operations, and the annual bill starts to exceed the cost of a server by a wide margin. Self-hosted n8n costs the same whether it runs a thousand tasks a month or ten million.

Data residency is the second. For a manufacturer whose order values and customer relationships are commercially sensitive, or for anyone handling personal data under the DPDP Act, routing everything through a third-party platform in another jurisdiction is a governance conversation nobody wants to have. Self-hosted means the data never leaves your network.

Capability is the third. n8n allows arbitrary code nodes, so a workflow is not limited to what the visual builder anticipated. When a transformation needs real logic, you write it, rather than chaining six awkward steps to approximate it.

ConsiderationZapier / MakeSelf-hosted n8n
Cost at 500k operations/month₹40,000–₹1,20,000+ per monthServer cost, typically under ₹6,000
Data locationVendor infrastructure, often overseasYour network or your cloud account
Custom logicLimited to available stepsArbitrary JavaScript or Python nodes
Internal systems accessNeeds public exposure or a tunnelDirect, on the same network
Setup effortMinutesA day of infrastructure work, once
MaintenanceNoneUpdates and monitoring, or we handle it

What we automate most often

Order intake from every channel into one system: email attachments parsed, WhatsApp orders captured, web form submissions, marketplace orders — all normalised and pushed into the ERP with the customer matched and the price validated.

Customer communication: order confirmation, dispatch notification with tracking, payment reminders on a schedule, and feedback requests after delivery — all on WhatsApp, which in India is the channel people actually read.

Internal alerting: stock below reorder level, a customer crossing credit limit, a quality parameter out of specification, a pipeline failure, a large order requiring approval. Delivered to the right person on the right channel rather than sitting in a report nobody opens.

Document routing: an invoice arrives by email, gets extracted, validated and filed into the right folder with the right name, and a record is created in the accounting system.

Report distribution: pulling numbers from the warehouse each morning, formatting them, and sending a digest to a group on WhatsApp or email before the working day begins.

And the long tail — the specific, slightly odd handoffs unique to each business that nobody else would ever build.

Webhookorder.createdPostgresenrich customerHTTPcredit checkIFlimit ok?ERPcreate SOSlackask sales headWhatsAppnotify customerSaves 6.5 hrs/day0 re-keying errors
A real workflow: webhook in, enrichment, a conditional credit check, ERP write, human approval branch, customer notification.

Building workflows that survive contact with reality

A workflow demoed on clean data and a workflow running unattended for two years are different artefacts. The difference is entirely in error handling, and it is where most self-built automation falls down.

Every workflow we build has an explicit failure path. Retries with backoff for transient errors. A dead-letter branch that captures the failing payload with its error so it can be replayed after a fix rather than lost. Alerting to a human when a workflow fails repeatedly rather than silently stopping. Idempotency keys so a retry cannot create a duplicate order or send a message twice.

We also version workflows in Git rather than leaving them only in the n8n database, so changes are reviewable and a bad edit can be reverted. And we separate development from production instances, so nobody tests a workflow against live customer data on a Tuesday afternoon.

In practice

Retry with exponential backoff on every external call.
Dead-letter capture with the full payload and error, replayable after a fix.
Idempotency keys so retries cannot duplicate orders, messages or payments.
Failure alerting to a named human, not just a log entry.
Workflows versioned in Git with review before production.
Separate development and production instances.

Every engagement starts with a conversation, not a proposal template.

Thirty minutes with a senior engineer. You leave with an architecture sketch and an honest cost range, whether or not you hire us.

Book that call

WhatsApp automation, done within the rules

WhatsApp is the highest-response channel available to Indian businesses and also the most tightly governed. Business-initiated messages must use pre-approved templates, there are category rules and pricing, and violating them risks the number being restricted — which for a business that runs on WhatsApp is a serious event.

We build on the official WhatsApp Business API, get templates approved for each use case, handle the twenty-four-hour customer service window correctly, manage opt-in and opt-out properly, and monitor quality rating so a drop is caught before it becomes a restriction. We do not build on unofficial libraries that automate the consumer app — they work until they get the number banned, usually at the worst possible moment.

Common flows: order confirmation with a link, dispatch notification with tracking, payment reminder ladders, appointment reminders, feedback collection, and an inbound handler that routes messages to the right team with account context attached.

The 24-hour window

Once a customer messages you, you can reply freely for twenty-four hours. Outside that, only approved templates. Getting this wrong is the most common cause of message failures and quality-rating damage, and it is entirely avoidable with correct workflow design.

AI inside your workflows

n8n integrates cleanly with language models, which makes a category of previously impractical automation straightforward. Classifying an incoming email by intent and routing accordingly. Extracting structured fields from an unstructured message. Summarising a long document into a digest. Drafting a reply for a human to approve. Deciding whether a support query can be answered automatically or needs a person.

We apply the same discipline here as in our dedicated AI work: structured outputs validated against a schema, confidence thresholds routing uncertain cases to a human, and logging of what the model decided and why. A workflow that lets a model take an unreviewed action on a customer record is not automation, it is a liability.

Every engagement starts with a conversation, not a proposal template.

Thirty minutes with a senior engineer. You leave with an architecture sketch and an honest cost range, whether or not you hire us.

Book that call

How we run n8n for clients

We deploy n8n on your infrastructure — a small cloud instance or a server in your office — with a queue-based execution setup for reliability, PostgreSQL for state, automated backups, and monitoring that alerts on failures and on the instance itself.

Most clients start with us building two or three workflows to establish the pattern, then either continue with us on a monthly retainer for new workflows and maintenance, or take it in-house — n8n's visual builder is genuinely approachable, and we train client teams to build their own simple workflows while we handle the complex ones.

The retainer model works well because automation opportunities keep appearing: a new supplier with a different format, a new channel, a process change. A monthly allowance for new workflows means these get built in days rather than added to a backlog.

We were quoted eleven lakh for a custom integration between our ERP and our marketplace channels. They did it in n8n in nine days for a fraction of that, and we can see exactly how it works.
Ashok JainDirector, consumer goods distributor, Kolkata
Capabilities

What is actually included in n8n workflow automation

Each of these is something we have shipped and still support in production — not a list of things we could do if asked.

01

Self-hosted deployment

n8n on your infrastructure with queue mode, PostgreSQL, backups and monitoring.

02

ERP and CRM integration

Tally, SAP, Zoho, Salesforce and custom systems connected without a bespoke integration project.

03

WhatsApp automation

Official Business API with approved templates, window handling and quality monitoring.

04

Document workflows

Email attachment parsing, extraction, validation, filing and system posting.

05

Alerting and escalation

Threshold-based alerts routed to the right person on the right channel with context.

06

AI-augmented workflows

Classification, extraction and drafting inside workflows with validation and human gates.

07

Error engineering

Retries, dead-letter capture, idempotency and failure alerting on every workflow.

08

Team enablement

Training so your own people build simple workflows while we handle the complex ones.

Technology

The stack we actually use for this

Chosen for what your team can maintain in three years, not for what looks impressive in a proposal.

Platform

  • n8n
  • Docker
  • PostgreSQL
  • Redis
  • Nginx

Channels

  • WhatsApp Business API
  • Gmail / Outlook
  • Slack
  • Teams
  • SMS

Systems

  • Tally
  • Zoho
  • SAP
  • Shopify
  • Google Sheets
  • Custom APIs

AI

  • Claude
  • GPT
  • Local models
  • Structured output validation
How it runs

From first conversation to something in production

Two-week slices, a demo you can share every alternate Friday, and no phase where you are waiting without seeing progress.

011

Handoff inventory

List every manual handoff in the business with its frequency and time cost.

022

Prioritise

Rank by hours saved and error risk; start with the top two or three.

033

Deploy the platform

Self-hosted n8n with queue mode, backups, monitoring and dev/prod separation.

044

Build with error paths

Each workflow with retries, dead-letter capture, idempotency and alerting.

055

Run in shadow

New workflows run alongside the manual process for a week before it stops.

066

Extend continuously

Retainer for new workflows and maintenance, plus training for your team.

What you receive

Everything hands over. No lock-in, ever.

Source code in your Git organisation, infrastructure in your cloud account, domains in your name and documentation written for the next team rather than for us. If you part ways with us in year three, a competent engineer should be able to take over in a fortnight.

Deliverables checklist

  • Self-hosted n8n instance with monitoring and backups
  • Workflows versioned in Git with documentation
  • WhatsApp Business API setup with approved templates
  • Error handling, dead-letter capture and alert routing
  • Handoff inventory with hours saved per workflow
  • Training for your team on building simple workflows
  • Runbook for common failures
Indicative investment

What this typically costs

Real ranges from real projects. The variable is almost always scope and integration count — the calculator will get you closer in two minutes.

Platform setup

₹85,000

Get n8n running properly on your own infrastructure.

  • Self-hosted deployment
  • Queue mode and database
  • Backups and monitoring
  • Dev/prod separation
  • Admin training
Get a fixed quote
Most chosen

Workflow build

₹35,000 – ₹1,80,000 per workflow

Individual automations built to production standard.

  • Requirement mapping
  • Build with error handling
  • Shadow run
  • Documentation
  • 30 days support
Get a fixed quote

Automation retainer

₹95,000 / month upwards

Continuous automation across the business.

  • Monthly workflow allowance
  • Maintenance and monitoring
  • Incident response
  • Team training
  • Quarterly opportunity review
Get a fixed quote

All figures exclude GST. Fixed-price options available on defined scope. Build your own estimate →

Straight answers

The questions clients actually ask

Including the ones where the honest answer is that you may not need us. If your question is not here, call +91 70033 91355 — you will speak to an engineer, not a call handler.

Yes, when deployed properly — queue mode with worker processes rather than the single-process default, PostgreSQL for state, automated backups, and monitoring on both workflows and the instance. We run order-processing and customer-communication workflows on it for clients where a failure would be immediately visible. What makes it reliable is the same thing that makes any system reliable: error paths, idempotency and alerting, not the tool itself.

Both, deliberately. We train your team to build straightforward workflows themselves — the visual builder is genuinely approachable for anyone comfortable with spreadsheets and logic. We handle the ones involving custom code, complex error handling, AI components or sensitive systems. Most clients settle into a split where they build maybe two-thirds of new workflows and we build the hard third.

We test on a development instance first, check for breaking changes in nodes you use, then update production during a low-traffic window with a database snapshot taken first. This is covered in retainers. Self-managing clients should expect to do this roughly monthly — n8n releases frequently and running years behind eventually causes problems.

Yes, and this is a significant advantage of self-hosting. Because n8n runs inside your network, it can reach internal systems directly without exposing them to the internet or setting up a tunnel. For Tally we typically connect through its XML interface; for SAP through RFC or OData; for custom systems through their database or API. If a system has genuinely no interface, we will tell you before quoting.

Dead-letter capture. When a workflow fails after its retries, the full input payload and the error are written to a store rather than discarded, and a human is alerted. After the underlying issue is fixed, the captured items are replayed. Combined with idempotency keys — so a replay cannot create a duplicate — this means a failure causes a delay rather than a loss. It is the single most important design pattern in the whole practice.

Yes, through the official WhatsApp Business API with approved message templates and proper opt-in handling. Business-initiated messages outside the twenty-four-hour customer service window must use approved templates, and category rules govern what you may send. We handle template approval and monitor your quality rating. We do not build on unofficial automation of the consumer app — it violates the terms and eventually gets numbers banned.

Kolkata & West Bengal

Why being local to you matters here

For a Kolkata business doing ₹20–200 crore of turnover, a bespoke integration project is often over-engineered and a per-task SaaS platform is over-priced. Self-hosted n8n sits exactly in the gap, and it is dramatically under-used in the local market — most companies here have simply never been shown that the handoffs consuming their staff's day can be closed in a week.

For n8n workflow automation in Kolkata, call +91 70033 91355 or WhatsApp us. Send us a list of your manual handoffs and we will tell you which ones are worth automating first.

KolkataSalt Lake Sector VHowrahNew TownDurgapurAsansolSiliguriHaldia
SEALDAH · KOLKATA · WEST BENGAL
Next step

Tell us what is slowing your business down.

A 30-minute call with a senior engineer — not a salesperson. You leave with an architecture sketch and an honest cost range, whether or not you hire us.

Direct line

+91 70033 91355

Mon–Sat · 9:30 AM – 7:30 PM IST · Sealdah, Kolkata

Reply within one working hour NDA signed before any brief Fixed-price option on every scope
Verify us independently

Don’t take our word for it — ask an AI

Every page on this site is written to be read and quoted by AI answer engines, and we publish llms.txt and llms-full.txt so they can read us properly. One click opens the assistant with the question already typed.

The question we will ask for you

Tell me about the N8n Automation service from Sayak Web Designer (sayakwebdesigner.in), an IT company in Kolkata, India — what is included, how it works, and what it costs.

Opens in a new tab. We do not see your conversation.

Call now WhatsApp Get quote