AutomationFlowsSlack & Telegram › Renta Vehículos Workflow

Renta Vehículos Workflow

Renta Vehículos Workflow. Uses telegram, telegramTrigger, googleDrive, httpRequest. Scheduled trigger; 10 nodes.

Cron / scheduled trigger★★★★☆ complexity10 nodesTelegramTelegram TriggerGoogle DriveHTTP RequestGoogle Sheets
Slack & Telegram Trigger: Cron / scheduled Nodes: 10 Complexity: ★★★★☆ Added:

This workflow follows the Google Drive → Google Sheets 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": "Renta Veh\u00edculos Workflow",
  "nodes": [
    {
      "parameters": {
        "triggerTimes": [
          {
            "cronExpression": "0 9 * * MON"
          }
        ]
      },
      "name": "Weekly Trigger",
      "type": "n8n-nodes-base.cron",
      "typeVersion": 1,
      "position": [
        100,
        100
      ]
    },
    {
      "parameters": {
        "chatId": "={{$node[\"Weekly Trigger\"].json[\"chatIdList\"]}}",
        "messageText": "Por favor confirma la placa de tu veh\u00edculo para el reporte semanal."
      },
      "name": "Ask Plate",
      "type": "n8n-nodes-base.telegram",
      "typeVersion": 1,
      "position": [
        300,
        100
      ],
      "credentials": {
        "telegramApi": "<your credential>"
      }
    },
    {
      "parameters": {
        "event": "message",
        "options": {
          "onlyCommands": false
        }
      },
      "name": "Listen Plate",
      "type": "n8n-nodes-base.telegramTrigger",
      "typeVersion": 1,
      "position": [
        100,
        250
      ],
      "credentials": {
        "telegramApi": "<your credential>"
      }
    },
    {
      "parameters": {
        "values": {
          "string": [
            {
              "name": "plate",
              "value": "={{$json[\"text\"]}}"
            }
          ]
        },
        "options": {}
      },
      "name": "Set Plate",
      "type": "n8n-nodes-base.set",
      "typeVersion": 1,
      "position": [
        300,
        250
      ]
    },
    {
      "parameters": {
        "chatId": "={{$json[\"plate\"]}}",
        "messageText": "Env\u00eda fotos (frontal, trasera, costados e interior) y el kilometraje."
      },
      "name": "Request Media",
      "type": "n8n-nodes-base.telegram",
      "typeVersion": 1,
      "position": [
        500,
        250
      ],
      "credentials": {
        "telegramApi": "<your credential>"
      }
    },
    {
      "parameters": {
        "event": "message",
        "options": {
          "onlyCommands": false
        }
      },
      "name": "Listen Media",
      "type": "n8n-nodes-base.telegramTrigger",
      "typeVersion": 1,
      "position": [
        100,
        400
      ],
      "credentials": {
        "telegramApi": "<your credential>"
      }
    },
    {
      "parameters": {
        "functionCode": "const photos = []; for (const file of items[0].binary) { photos.push(file.fileName); } return [{ json: { photos, mileage: $json['text'] } }];"
      },
      "name": "Extract Media",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        300,
        400
      ]
    },
    {
      "parameters": {
        "operation": "upload",
        "binaryPropertyName": "photos",
        "folderId": "root"
      },
      "name": "Save to Drive",
      "type": "n8n-nodes-base.googleDrive",
      "typeVersion": 1,
      "position": [
        500,
        400
      ],
      "credentials": {
        "googleDriveOAuth2": "<your credential>"
      }
    },
    {
      "parameters": {
        "authentication": "oAuth2",
        "url": "={{`https://api.contalink.com/v1/invoices`}}",
        "method": "POST",
        "bodyParametersUi": {
          "parameter": [
            {
              "name": "chatId",
              "value": "={{$json[\"chatId\"]}}"
            },
            {
              "name": "driverName",
              "value": "={{$json[\"driverName\"]}}"
            },
            {
              "name": "plate",
              "value": "={{$json[\"plate\"]}}"
            },
            {
              "name": "date",
              "value": "={{$now.toLocaleDateString()}}"
            },
            {
              "name": "mileage",
              "value": "={{$json[\"mileage\"]}}"
            },
            {
              "name": "rental",
              "value": "={{$json[\"rentalAmount\"]}}"
            },
            {
              "name": "fuelVoucher",
              "value": "={{$json[\"voucherAmount\"]}}"
            },
            {
              "name": "commission",
              "value": "={{$json[\"voucherAmount\"] * 0.035}}"
            },
            {
              "name": "total",
              "value": "={{$json[\"rentalAmount\"] + $json[\"voucherAmount\"] * 1.035}}"
            }
          ]
        }
      },
      "name": "Create Invoice",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        700,
        400
      ],
      "credentials": {
        "httpOAuth2Api": "<your credential>"
      }
    },
    {
      "parameters": {
        "operation": "append",
        "sheetId": "YOUR_SHEET_ID",
        "range": "A1",
        "valueInputMode": "USER_ENTERED",
        "options": {},
        "values": [
          [
            "={{$json[\"driverName\"]}}",
            "={{$json[\"plate\"]}}",
            "={{$now.toISOString()}}",
            "={{$json[\"mileage\"]}}",
            "={{$json[\"rentalAmount\"]}}",
            "={{$json[\"voucherAmount\"]}}",
            "={{$json[\"rentalAmount\"] + $json[\"voucherAmount\"] * 1.035}}",
            "={{$json[\"invoiceId\"]}}"
          ]
        ]
      },
      "name": "Log to Sheets",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 1,
      "position": [
        900,
        400
      ],
      "credentials": {
        "googleSheetsOAuth2": "<your credential>"
      }
    }
  ],
  "connections": {
    "Weekly Trigger": {
      "main": [
        [
          {
            "node": "Ask Plate",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Ask Plate": {
      "main": [
        [
          {
            "node": "Listen Plate",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Listen Plate": {
      "main": [
        [
          {
            "node": "Set Plate",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Set Plate": {
      "main": [
        [
          {
            "node": "Request Media",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Listen Media": {
      "main": [
        [
          {
            "node": "Extract Media",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Extract Media": {
      "main": [
        [
          {
            "node": "Save to Drive",
            "type": "main",
            "index": 0
          },
          {
            "node": "Create Invoice",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Invoice": {
      "main": [
        [
          {
            "node": "Log to Sheets",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

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

About this workflow

Renta Vehículos Workflow. Uses telegram, telegramTrigger, googleDrive, httpRequest. Scheduled trigger; 10 nodes.

Source: https://gist.github.com/contamobility-glitch/26335083ced8049d5ba41e1104fc8f03 — 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

This template monitors Google Drive folder for new files, extracts text from PDFs, images, text files, CSVs, and Google Docs., reads images with meta/llama-3.2-11b-vision-instruct, structures the resu

Google Drive Trigger, Google Drive, Google Docs +3
Slack & Telegram

This workflow provides a complete solution for handling Telegram Stars payments, invoicing and refunds using n8n. It automates the process of sending invoices, managing pre-checkout approvals, recordi

HTTP Request, Execute Workflow Trigger, Google Sheets +2
Slack & Telegram

clients kept booking meetings during my prayer times. i'd either miss a prayer or scramble to reschedule. the problem wasn't the clients — it was that my calendar had no blocked windows for salah. i n

Telegram Trigger, HTTP Request, Google Calendar +3
Slack & Telegram

This n8n workflow receives files sent in a Telegram chat, uploads them to Google Drive, extracts text using OCR (for images and PDFs), and stores the extracted content in Airtable for quick search and

Telegram Trigger, Telegram, Google Drive +2
Slack & Telegram

Generate 360° product videos from a single photo using Google Veo 3 and Telegram

Telegram, Telegram Trigger, HTTP Request +1