Business Process Automation via n8n

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Business Process Automation via n8n
Medium
~3-5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    823
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    848
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Setting Up Business Process Automation via n8n

n8n is an open-source automation platform with a visual workflow editor. Unlike Zapier and Make, n8n is self-hosted, supports arbitrary JavaScript in nodes, and has no operation limits.

Typical Automation Scenarios

  • New user in database → welcome email + CRM task + Slack notification
  • Incoming webhook → data processing → Google Sheets entry + SMS send
  • Cron task: daily PostgreSQL report → formatting → email send
  • New WooCommerce order → invoice creation in 1C → manager notification

n8n Architecture

Workflow consists of nodes:

  • Trigger: Webhook, Cron, Database polling, Event
  • Action: HTTP Request, Send Email, Slack, Telegram, DB operations
  • Transform: Code (JavaScript/Python), Set, Merge, Split
  • Logic: If, Switch, Wait, Loop Over Items

Example: Onboarding Automation

[Trigger: Webhook POST /signup]
        │
[Node: Validate email] ──error──► [Node: Slack #errors]
        │
[Node: PostgreSQL INSERT user]
        │
[Node: Split in Batches]
        │
    ┌───┴────────────────────────┐
    ▼                            ▼
[Node: SendGrid                [Node: HubSpot
 Welcome Email]                 Create Contact]
    │                            │
    └────────────┬───────────────┘
                 ▼
         [Node: Slack
          #new-users notify]

Code Node (JavaScript)

// Data transformation inside workflow
const items = $input.all();

return items.map(item => {
  const user = item.json;
  const registrationDate = new Date(user.created_at);

  return {
    json: {
      ...user,
      displayName: `${user.first_name} ${user.last_name}`.trim() || user.email,
      isWeekendRegistration: [0, 6].includes(registrationDate.getDay()),
      utmSource: user.utm_source || 'organic',
      welcomeEmailSubject: user.plan === 'pro'
        ? `Welcome to Pro, ${user.first_name}!`
        : `Welcome, ${user.first_name}!`
    }
  };
});

HTTP Request Node

{
  "method": "POST",
  "url": "https://api.sendgrid.com/v3/mail/send",
  "authentication": "headerAuth",
  "headers": {
    "Authorization": "Bearer {{ $env.SENDGRID_API_KEY }}"
  },
  "body": {
    "personalizations": [
      {
        "to": [{ "email": "={{ $json.email }}" }],
        "dynamic_template_data": {
          "name": "={{ $json.displayName }}",
          "plan": "={{ $json.plan }}"
        }
      }
    ],
    "from": { "email": "[email protected]" },
    "template_id": "d-abc123"
  }
}

Error Handling

[Main workflow]
      │
  ────┼──── error handler branch ────►
      │                               │
[Node: Continue on fail = true]   [Node: Slack alert]
                                       │
                                  [Node: Log to DB]

Enable "Continue On Fail" in node settings + separate Error Workflow branch for alerts.

Timeline

Simple workflow (3–5 nodes) — 1 day. Complex workflow with conditions, transformations, and error handling — 3–5 days.