Block 1 - 0. Google Sheets (New/Updated Row Trigger)
- Type / Role
- n8n-nodes-base.googleSheetsTrigger - googleSheetsTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
How It Works ️ This workflow automatically takes a long property URL from your Google Sheet, shortens it, generates a QR code, and then updates your sheet with the new links. 1. 0. Google Sheets (...
n8n-nodes-base.googlesheetstrigger, n8n-nodes-base.httprequest, n8n-nodes-base.googlesheets, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Marth.
Original n8n.io sourceThis workflow automatically takes a long property URL from your Google Sheet, shortens it, generates a QR code, and then updates your sheet with the new links.
Follow these steps carefully to get your "Property Link Shortener & QR Code Generator" workflow up and running in n8n:
Import Workflow JSON:
Prepare your Google Sheet:
Property Link), a column for the shortened URL (e.g., Short URL), a column for the QR code image URL (e.g., QR Code URL), and a unique identifier for each row (e.g., Property ID).Configure 0. Google Sheets (New/Updated Row Trigger):
YOUR_SPREADSHEET_ID with the ID of your Google Sheet. You can find this ID in the Google Sheet's URL.Listings or Properties).Updated Row and select the column where your original long property link is located (e.g., Property Link). This ensures the workflow runs when you add or update a property link.Configure 1. Shorten URL (HTTP Request - Bitly):
POST.https://api-ssl.bitly.com/v4/shortenAuthorization with value Bearer YOUR_BITLY_ACCESS_TOKEN. (You'll need to generate a Generic Access Token from your Bitly account settings > Generic Access Token).Content-Type with value application/json.Raw and JSON.{"long_url": "{{ $json[\"Property Link\"] }}"}. Ensure "Property Link" exactly matches your Google Sheet column header for the original URL.JSON.Configure 2. Generate QR Code (HTTP Request - QR Code API):
GET.https://api.qrserver.com/v1/create-qr-code/?size=150x150&data={{ encodeURIComponent($('1. Shorten URL (HTTP Request - Bitly)').item.json.link) }}{{ $('1. Shorten URL (HTTP Request - Bitly)').item.json.link }} refers to the output of the previous Bitly node.size=150x150 as needed.encodeURIComponent is important to handle special characters in the URL.Binary. (This API directly returns the image, but we just need its URL which is in the url property of the response).Configure 3. Update Google Sheet (Update Row):
YOUR_SPREADSHEET_ID.YOUR_SHEET_NAME_E.G._Listings.Property ID (assuming you have one in your sheet).={{ $json["Property ID"] }}. Make sure this matches your unique ID column from the Google Sheet.Short URL (exact name of your short URL column in Google Sheet)={{ $('1. Shorten URL (HTTP Request - Bitly)').item.json.link }}QR Code URL (exact name of your QR Code URL column in Google Sheet)={{ $('2. Generate QR Code (HTTP Request - QR Code API)').item.url }} (This will be the URL of the QR code image from the HTTP request response).Review and Activate:
YOUR_...) are replaced with your actual information and settings are correct.This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automate property link shortening & QR code generation with Google Sheets and Bitly |
|---|---|
| Complexity | intermediate |
| Nodes | 6 |
| Categories | Content Creation |
| Author | Marth |
| Published | 25 Jul 2025 |
Use the JSON export at /data/workflows/6407/6407.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
How It Works ️ This workflow automatically takes a long property URL from your Google Sheet, shortens it, generates a QR code, and then updates your sheet with the new links. 1. 0. Google Sheets (...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation use case.