AutomationFlowsSlack & Telegram › Sellf Refund Alerts to Telegram

Sellf Refund Alerts to Telegram

Original n8n title: Sellf: Refund Request Alert → Telegram

Sellf: Refund Request Alert → Telegram. Uses httpRequest, telegram. Scheduled trigger; 5 nodes.

Cron / scheduled trigger★★★★☆ complexity5 nodesHTTP RequestTelegram
Slack & Telegram Trigger: Cron / scheduled Nodes: 5 Complexity: ★★★★☆ Added:

This workflow follows the HTTP Request → Telegram recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "name": "Sellf: Refund Request Alert \u2192 Telegram",
  "nodes": [
    {
      "parameters": {
        "content": "## Sellf: Refund Alert \u2014 Konfiguracja\n\n**1. Sellf API \u2014 URL + klucz**\nW node \"Check Pending Refunds\" zmie\u0144 domen\u0119:\n`https://yourdomain.com` \u2192 Twoja domena Sellf.\nW n8n \u2192 Credentials \u2192 HTTP Header Auth \u2192 dodaj:\n`X-Api-Key: sf_live_xxx` (klucz z Sellf admin \u2192 Settings \u2192 API).\n\n**2. Telegram Bot**\nn8n \u2192 Credentials \u2192 Telegram API \u2192 wpisz Bot Token\n(utw\u00f3rz bota przez @BotFather).\nW node \"Send to Telegram\" ustaw `YOUR_CHAT_ID`\n(u\u017cyj @userinfobot aby pozna\u0107 swoje Chat ID).\n\n**3. Cz\u0119stotliwo\u015b\u0107 sprawdzania**\nDomy\u015blnie co 15 minut. Zmie\u0144 w node \"Every 15 Minutes\".",
        "height": 300,
        "width": 380,
        "color": 4
      },
      "id": "note-1",
      "name": "Konfiguracja",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        -420,
        100
      ]
    },
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "minutes",
              "minutesInterval": 15
            }
          ]
        }
      },
      "id": "cron-1",
      "name": "Every 15 Minutes",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.2,
      "position": [
        0,
        300
      ]
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://yourdomain.com/api/v1/refund-requests?status=pending",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "options": {}
      },
      "id": "http-1",
      "name": "Check Pending Refunds (Sellf API)",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        260,
        300
      ],
      "notes": "TODO: Configure HTTP Header Auth with Sellf API key (X-API-Key: sf_live_xxx). Update domain URL."
    },
    {
      "parameters": {
        "jsCode": "const response = $input.first().json;\nconst refunds = response.data || response.refund_requests || response || [];\n\nif (!Array.isArray(refunds) || refunds.length === 0) return [];\n\nconst lines = refunds.map(r =>\n  `\u2022 ${r.customer_email || r.email || 'N/A'} \u2014 ${r.product_name || r.product || 'N/A'} (${r.amount ? r.amount/100 : '?'} ${r.currency || ''})`\n).join('\\n');\n\nconst msg = `\u26a0\ufe0f *Pending Refund Requests: ${refunds.length}*\\n\\n${lines}\\n\\n\ud83d\udc49 Sprawd\u017a w panelu admina`;\n\nreturn [{ json: { message: msg, count: refunds.length } }];"
      },
      "id": "code-1",
      "name": "Format Alert",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        520,
        300
      ]
    },
    {
      "parameters": {
        "chatId": "YOUR_CHAT_ID",
        "text": "={{ $json.message }}",
        "additionalFields": {
          "parse_mode": "Markdown"
        }
      },
      "id": "tg-1",
      "name": "Send to Telegram",
      "type": "n8n-nodes-base.telegram",
      "typeVersion": 1.2,
      "position": [
        760,
        300
      ],
      "notes": "TODO: Configure Telegram Bot credentials and set YOUR_CHAT_ID."
    }
  ],
  "connections": {
    "Every 15 Minutes": {
      "main": [
        [
          {
            "node": "Check Pending Refunds (Sellf API)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Check Pending Refunds (Sellf API)": {
      "main": [
        [
          {
            "node": "Format Alert",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Format Alert": {
      "main": [
        [
          {
            "node": "Send to Telegram",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "id": "htZNMuiK4WS01HWe"
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Sellf: Refund Request Alert → Telegram. Uses httpRequest, telegram. Scheduled trigger; 5 nodes.

Source: https://github.com/jurczykpawel/sellf/blob/b3e49c35a519aa81607e2855a7911ce0365d2f3c/n8n/sellf-refund-alert.json — original creator credit. Request a take-down →

More Slack & Telegram workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Slack & Telegram

⚠️ Heads up: this is satire. The "Hell Yeah!" workflow is a parody of "automate your whole life with AI agents" grindset content. The API endpoints are fictional and the function nodes are illustrativ

HTTP Request, Salesforce, Telegram +4
Slack & Telegram

This workflow tracks a configurable crypto watchlist using the CoinGecko API, sends Telegram alerts when price, % change, or volume-spike conditions are met (with optional RSI filtering), optionally l

HTTP Request, Telegram, Google Sheets +1
Slack & Telegram

This workflow continuously monitors the Meta Ads Library for new creatives from a specific competitor pages, logs them into Google Sheets, and sends a concise Telegram notification with the number of

HTTP Request, Telegram, Google Sheets +1
Slack & Telegram

This n8n workflow template is designed to provide real-time alerts on new cryptocurrency exchange listings and delistings. It caters especially to crypto traders, investors, and enthusiasts who want t

Supabase, HTTP Request, Telegram +2
Slack & Telegram

> n8n, Binance API, Google Sheets, Slack, Telegram, Jira & Email

HTTP Request, Google Sheets, Slack +3