Delivery update — Telegram

SETUP: add a “telegram” credential in Admin → Credentials, then Test sends for real — the node is pre-wired with ${credential.…} references. Until then this demo saves and verifies but the send will report the missing credential. Sends the tracking update to the customer's chat.

What’s inside

3 nodes — every type links to its full reference page.

StepNodeType
Out for delivery Inject input.inject
Send update Telegram output.telegram
Sent Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/delivery-update-telegram.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Delivery update — Telegram"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Delivery update — Telegram",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Out for delivery",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "chatId": "12345",
          "orderId": "A-1002",
          "eta": "Thursday"
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "send",
      "type": "output.telegram",
      "label": "Send update",
      "category": "output",
      "config": {
        "credentialId": "",
        "token": "${credential.telegram.token}",
        "operation": "sendMessage",
        "chatId": "{{ $json.chatId }}",
        "text": "📦 Order {{ $json.orderId }} arrives {{ $json.eta }}!",
        "parseMode": "",
        "baseUrl": "",
        "timeoutMs": 15000
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Sent",
      "category": "utility",
      "config": {
        "message": "update sent for {{ $json.orderId }}"
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "send",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "send",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "SETUP: add a “telegram” credential in Admin → Credentials, then Test sends for real — the node is pre-wired with ${credential.…} references. Until then this demo saves and verifies but the send will report the missing credential. Sends the tracking update to the customer's chat."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: delivery-update-telegram.json.