Generate single-use personalized Calendly links with Google Sheets tracking & Slack alerts
This n8n template implements a Calendly Booking Link Generator that creates single-use, personalized booking links, logs them to Google Sheets, and optionally notifies a Slack channel
Who's it for
This template is designed for teams and businesses that send Calendly links proactively and want to generate trackable, single-use booking links on demand. It’s perfect for:
- Sales and SDR teams sending 1:1 outreach and needing unique booking links per prospect
- Customer success and support teams who want prefilled, one-click rescheduling or follow-up links
- Marketing and growth teams that want UTM-tagged booking links for campaigns
- Ops/RevOps who need a central log of every generated link for tracking and reporting
How it works / What it does
This workflow turns a simple HTTP request into a fully configured single-use Calendly booking link:
- Webhook Trigger (
POST)- Receives JSON payload with recipient details:
name,email, optionalevent_type_uri, optionalutm_source
- Configuration & Input Normalization
Set Configurationextracts and normalizes:recipient_name,recipient_emailrequested_event_type(can be empty)utm_source(defaults to"n8n"if not provided)
- Calendly API – User & Event Types
Get Current UsercallsGET /users/meusing Calendly OAuth2 to get the current user URIExtract Userstoresuser_urianduser_nameGet Event TypescallsGET /event_types?user={user_uri}&active=trueto fetch active event typesSelect Event Type:- Uses
requested_event_typeif provided, otherwise selects the first active event type - Stores event type URI, name, and duration (minutes)
- Uses
- Create Calendly Single-Use Scheduling Link
Create Single-Use LinkcallsPOST /scheduling_linkswith:owner: selected event type URIowner_type:"EventType"max_event_count:1(single use)
- Build Personalized Booking URL
Build Personalized Link:- Reads the base
booking_urlfrom Calendly - Appends query parameters to prefill:
name(encoded)email(encoded)utm_source
- Stores:
base_booking_urlpersonalized_booking_urlrecipient_name,recipient_emailevent_type_name,event_durationlink_created_at(ISO timestamp)
- Reads the base
- Optional Logging and Notifications
Log to Google Sheets(optional but preconfigured):- Appends each generated link to a “Generated Links” sheet
- Columns: Recipient Name, Recipient Email, Event Type, Duration (min), Booking URL, Created At, Status
Notify via Slack(optional):- Posts a nicely formatted Slack message with:
- recipient name & email
- event name & duration
- clickable booking link
- Posts a nicely formatted Slack message with:
- API Response to Caller
Respond to Webhookreturns a structured JSON response:successbooking_url(personalized)base_urlrecipientobjecteventobject (name + duration)created_atexpiresexplanation ("Single-use or 90 days")
The result is an API-style service you can call from any system to generate trackable, single-use Calendly links.
How to set up
1. Calendly OAuth2 setup
- Go to
calendly.com/integrationsordeveloper.calendly.com - Create an OAuth2 application (or use an existing one)
- In n8n, create Calendly OAuth2 credentials:
- Add client ID, client secret, and redirect URL as required by Calendly
- Connect your Calendly user account
- In the workflow, make sure all Calendly HTTP Request nodes use your Calendly OAuth2 credential
2. Webhook Trigger configuration
- Open the
Webhook Triggernode - Confirm:
- HTTP Method:
POST - Path:
generate-calendly-link - Response Mode:
Response Node(points toRespond to Webhook)
- HTTP Method:
- Copy the Production URL from the node once the workflow is active
- Use this URL as the endpoint for your CRM, outbound tool, or any system that needs to request links
Expected request body:
{
"name": "John Doe",
"email": "john@example.com",
"event_type_uri": "optional",
"utm_source": "optional"
}
If event_type_uri is not provided, the workflow automatically uses the first active event type for the current Calendly user.
3. Google Sheets setup (optional but recommended)
- Create a Google Sheet for tracking links
- Add a sheet/tab named e.g. “Generated Links”
- Set the header row to:
Recipient Name,Recipient Email,Event Type,Duration (min),Booking URL,Created At,Status
- In n8n:
- Create Google Sheets OAuth2 credentials
- Open the
Log to Google Sheetsnode - Update:
documentId→ your spreadsheet IDsheetName→ your tab name (e.g. “Generated Links”)
4. Slack notification setup (optional)
- Create a Slack app at
api.slack.com - Add Bot Token scopes (for basic posting):
chat:writechannels:read(orgroups:readif posting to private channels)
- Install the app to your workspace and get the Bot User OAuth Token
- In n8n:
- Create a Slack API credential using the bot token
- Open the
Notify via Slacknode - Select your credential
- Set:
select:channelchannelId: your desired channel (e.g.#salesor#booking-links)
5. Test the workflow end-to-end
- Activate the workflow
- Use Postman, curl, or another system to
POSTto the webhook URL, e.g.:
{
"name": "Test User",
"email": "test@example.com"
}
- Verify:
- The HTTP response contains a valid
booking_url - A new row is added to your Google Sheet (if configured)
- A Slack notification is posted (if configured)
- The HTTP response contains a valid
Requirements
- Calendly account with at least one active event type
- n8n instance (cloud or self-hosted) with public access for the webhook
- Calendly OAuth2 credentials configured in n8n
- (Optional) Google Sheets account and OAuth2 credentials
- (Optional) Slack workspace with permissions to install a bot and post to channels
How to customize the workflow
Input & validation
- Update the
Set Configurationnode to:- Enforce required fields (e.g. fail if
emailis missing) - Add more optional parameters (e.g.
utm_campaign,utm_medium,language)
- Enforce required fields (e.g. fail if
- Add an
IFnode after the Webhook Trigger for stricter validation and custom error responses
Event type selection logic
- In
Select Event Type:- Change the fallback selection rule (e.g. pick the longest or shortest duration event)
- Add logic to map a custom field (like
event_key) to specific event type URIs
Link parameters & tracking
- In
Build Personalized Link:- Add additional query parameters (e.g.
utm_campaign,source,segment) - Remove or rename existing parameters if needed
- Add additional query parameters (e.g.
- If you don’t want prefilled name/email, remove those query parameters and just keep tracking fields
Google Sheets logging
- Extend the
Log to Google Sheetsmapping to include:utm_sourceor other marketing attributes- Sales owner, campaign name, or pipeline stage
- Any additional fields you compute in previous nodes
Slack notification formatting
- In
Notify via Slack:- Adjust the message text to your team’s tone
- Add emojis or @mentions for certain event types
- Include
utm_sourceor other metadata for debugging and tracking
Key features
- Single-use Calendly links – each generated link is limited to one booking (or expires after ~90 days)
- Prefilled recipient details – name and email are embedded in the URL, making it frictionless to book
- Webhook-first design – easily call this from CRMs, outreach tools, or any external system
- Central link logging – every link is stored in Google Sheets for auditing and reporting
- Optional Slack alerts – keep sales/support teams notified when new links are generated
- Safe error handling – HTTP nodes are configured with
continueRegularOutputto avoid hard workflow failures
Example scenarios
Scenario 1: Sales outreach
- A CRM workflow triggers when a lead moves to “Meeting Requested”.
- It calls this n8n webhook with the lead’s
nameandemail. - The workflow generates a single-use Calendly link, logs it to Sheets, and posts to Slack.
- The CRM sends an email to the lead with the personalized booking link.
Scenario 2: Automated follow-up link
- A support ticket is resolved and the system wants to offer a follow-up call.
- It calls the webhook with
name,email, and a dedicatedevent_type_urifor “Follow-up Call”. - The generated link is logged and returned via API, then included in an automated email.
Scenario 3: Campaign tracking
- A marketing automation tool triggers this webhook for each contact in a campaign, passing
utm_source(e.g.q1-outbound). - The workflow adds
utm_sourceto the link and logs it in Google Sheets. - Later, you can analyze which campaigns generated the most completed bookings from single-use links.
This template gives you a reliable, reusable Calendly link generation service that plugs into any part of your stack, while keeping tracking, logging, and team visibility fully automated.
Generate Single-Use Personalized Calendly Links with Google Sheets Tracking & Slack Alerts
This n8n workflow automates the process of generating unique, personalized Calendly links, tracking them in a Google Sheet, and sending Slack notifications upon request. It's designed to streamline the distribution of tailored scheduling links for sales, marketing, or outreach efforts.
What it does
This workflow simplifies the creation and management of personalized Calendly links by:
- Receiving a Webhook Request: It listens for incoming webhook requests, which can be triggered by various external systems or manual calls.
- Editing Fields: It processes the incoming data, likely extracting necessary information like the recipient's name or email to personalize the Calendly link.
- Generating Calendly Link: It makes an HTTP request to the Calendly API to generate a single-use, personalized scheduling link.
- Tracking in Google Sheets: It updates a specified Google Sheet with the details of the generated link, including the recipient's information and the unique Calendly URL.
- Sending Slack Alert: It sends a notification to a designated Slack channel, informing the team that a new personalized Calendly link has been generated and for whom.
- Responding to Webhook: It sends a response back to the original webhook caller, potentially including the newly generated Calendly link or a confirmation message.
Prerequisites/Requirements
To use this workflow, you will need:
- n8n Instance: A running n8n instance.
- Calendly Account: An active Calendly account with API access.
- Google Sheets Account: A Google account with access to Google Sheets.
- Slack Account: A Slack workspace and a channel for notifications.
- n8n Credentials: Configured credentials in n8n for:
- Calendly (via HTTP Request node, likely an API key or OAuth)
- Google Sheets (OAuth 2.0 or Service Account)
- Slack (OAuth 2.0)
Setup/Usage
- Import the Workflow: Download the provided JSON and import it into your n8n instance.
- Configure Credentials:
- For the Google Sheets node, select or create a Google Sheets OAuth2 credential.
- For the HTTP Request node (for Calendly), configure the authentication method (e.g., API Key in headers or OAuth2 if supported by Calendly's API).
- For the Slack node, select or create a Slack OAuth2 credential.
- Customize Nodes:
- Webhook: Activate the webhook and copy its URL. This URL will be used to trigger the workflow.
- Edit Fields (Set): Adjust the fields to match the data structure you expect from the incoming webhook and how you want to format data for Calendly and Google Sheets.
- HTTP Request: Update the Calendly API endpoint, request body (to include personalization parameters), and any headers required for authentication.
- Google Sheets: Specify the Spreadsheet ID, Sheet Name, and the columns where the data (e.g., recipient name, email, Calendly link) should be written.
- Slack: Configure the Slack channel, message text, and any other desired message properties.
- Respond to Webhook: Customize the response body to send back relevant information to the caller.
- Activate the Workflow: Once all configurations are complete, activate the workflow.
- Trigger the Workflow: Send a POST request to the webhook URL with the necessary data (e.g., recipient's name and email) to generate a personalized Calendly link.
Related Templates
Auto-create TikTok videos with VEED.io AI avatars, ElevenLabs & GPT-4
💥 Viral TikTok Video Machine: Auto-Create Videos with Your AI Avatar --- 🎯 Who is this for? This workflow is for content creators, marketers, and agencies who want to use Veed.io’s AI avatar technology to produce short, engaging TikTok videos automatically. It’s ideal for creators who want to appear on camera without recording themselves, and for teams managing multiple brands who need to generate videos at scale. --- ⚙️ What problem this workflow solves Manually creating videos for TikTok can take hours — finding trends, writing scripts, recording, and editing. By combining Veed.io, ElevenLabs, and GPT-4, this workflow transforms a simple Telegram input into a ready-to-post TikTok video featuring your AI avatar powered by Veed.io — speaking naturally with your cloned voice. --- 🚀 What this workflow does This automation links Veed.io’s video-generation API with multiple AI tools: Analyzes TikTok trends via Perplexity AI Writes a 10-second viral script using GPT-4 Generates your voiceover via ElevenLabs Uses Veed.io (Fabric 1.0 via FAL.ai) to animate your avatar and sync the lips to the voice Creates an engaging caption + hashtags for TikTok virality Publishes the video automatically via Blotato TikTok API Logs all results to Google Sheets for tracking --- 🧩 Setup Telegram Bot Create your bot via @BotFather Configure it as the trigger for sending your photo and theme Connect Veed.io Create an account on Veed.io Get your FAL.ai API key (Veed Fabric 1.0 model) Use HTTPS image/audio URLs compatible with Veed Fabric Other APIs Add Perplexity, ElevenLabs, and Blotato TikTok keys Connect your Google Sheet for logging results --- 🛠️ How to customize this workflow Change your Avatar: Upload a new image through Telegram, and Veed.io will generate a new talking version automatically. Modify the Script Style: Adjust the GPT prompt for tone (educational, funny, storytelling). Adjust Voice Tone: Tweak ElevenLabs stability and similarity settings. Expand Platforms: Add Instagram, YouTube Shorts, or X (Twitter) posting nodes. Track Performance: Customize your Google Sheet to measure your most successful Veed.io-based videos. --- 🧠 Expected Outcome In just a few seconds after sending your photo and theme, this workflow — powered by Veed.io — creates a fully automated TikTok video featuring your AI avatar with natural lip-sync and voice. The result is a continuous stream of viral short videos, made without cameras, editing, or effort. --- ✅ Import the JSON file in n8n, add your API keys (including Veed.io via FAL.ai), and start generating viral TikTok videos starring your AI avatar today! 🎥 Watch This Tutorial --- 📄 Documentation: Notion Guide Need help customizing? Contact me for consulting and support : Linkedin / Youtube
Track competitor SEO keywords with Decodo + GPT-4.1-mini + Google Sheets
This workflow automates competitor keyword research using OpenAI LLM and Decodo for intelligent web scraping. Who this is for SEO specialists, content strategists, and growth marketers who want to automate keyword research and competitive intelligence. Marketing analysts managing multiple clients or websites who need consistent SEO tracking without manual data pulls. Agencies or automation engineers using Google Sheets as an SEO data dashboard for keyword monitoring and reporting. What problem this workflow solves Tracking competitor keywords manually is slow and inconsistent. Most SEO tools provide limited API access or lack contextual keyword analysis. This workflow solves that by: Automatically scraping any competitor’s webpage with Decodo. Using OpenAI GPT-4.1-mini to interpret keyword intent, density, and semantic focus. Storing structured keyword insights directly in Google Sheets for ongoing tracking and trend analysis. What this workflow does Trigger — Manually start the workflow or schedule it to run periodically. Input Setup — Define the website URL and target country (e.g., https://dev.to, france). Data Scraping (Decodo) — Fetch competitor web content and metadata. Keyword Analysis (OpenAI GPT-4.1-mini) Extract primary and secondary keywords. Identify focus topics and semantic entities. Generate a keyword density summary and SEO strength score. Recommend optimization and internal linking opportunities. Data Structuring — Clean and convert GPT output into JSON format. Data Storage (Google Sheets) — Append structured keyword data to a Google Sheet for long-term tracking. Setup Prerequisites If you are new to Decode, please signup on this link visit.decodo.com n8n account with workflow editor access Decodo API credentials OpenAI API key Google Sheets account connected via OAuth2 Make sure to install the Decodo Community node. Create a Google Sheet Add columns for: primarykeywords, seostrengthscore, keyworddensity_summary, etc. Share with your n8n Google account. Connect Credentials Add credentials for: Decodo API credentials - You need to register, login and obtain the Basic Authentication Token via Decodo Dashboard OpenAI API (for GPT-4o-mini) Google Sheets OAuth2 Configure Input Fields Edit the “Set Input Fields” node to set your target site and region. Run the Workflow Click Execute Workflow in n8n. View structured results in your connected Google Sheet. How to customize this workflow Track Multiple Competitors → Use a Google Sheet or CSV list of URLs; loop through them using the Split In Batches node. Add Language Detection → Add a Gemini or GPT node before keyword analysis to detect content language and adjust prompts. Enhance the SEO Report → Expand the GPT prompt to include backlink insights, metadata optimization, or readability checks. Integrate Visualization → Connect your Google Sheet to Looker Studio for SEO performance dashboards. Schedule Auto-Runs → Use the Cron Node to run weekly or monthly for competitor keyword refreshes. Summary This workflow automates competitor keyword research using: Decodo for intelligent web scraping OpenAI GPT-4.1-mini for keyword and SEO analysis Google Sheets for live tracking and reporting It’s a complete AI-powered SEO intelligence pipeline ideal for teams that want actionable insights on keyword gaps, optimization opportunities, and content focus trends, without relying on expensive SEO SaaS tools.
Two-way property repair management system with Google Sheets & Drive
This workflow automates the repair request process between tenants and building managers, keeping all updates organized in a single spreadsheet. It is composed of two coordinated workflows, as two separate triggers are required — one for new repair submissions and another for repair updates. A Unique Unit ID that corresponds to individual units is attributed to each request, and timestamps are used to coordinate repair updates with specific requests. General use cases include: Property managers who manage multiple buildings or units. Building owners looking to centralize tenant repair communication. Automation builders who want to learn multi-trigger workflow design in n8n. --- ⚙️ How It Works Workflow 1 – New Repair Requests Behind the Scenes: A tenant fills out a Google Form (“Repair Request Form”), which automatically adds a new row to a linked Google Sheet. Steps: Trigger: Google Sheets rowAdded – runs when a new form entry appears. Extract & Format: Collects all relevant form data (address, unit, urgency, contacts). Generate Unit ID: Creates a standardized identifier (e.g., BUILDING-UNIT) for tracking. Email Notification: Sends the building manager a formatted email summarizing the repair details and including a link to a Repair Update Form (which activates Workflow 2). --- Workflow 2 – Repair Updates Behind the Scenes:\ Triggered when the building manager submits a follow-up form (“Repair Update Form”). Steps: Lookup by UUID: Uses the Unit ID from Workflow 1 to find the existing row in the Google Sheet. Conditional Logic: If photos are uploaded: Saves each image to a Google Drive folder, renames files consistently, and adds URLs to the sheet. If no photos: Skips the upload step and processes textual updates only. Merge & Update: Combines new data with existing repair info in the same spreadsheet row — enabling a full repair history in one place. --- 🧩 Requirements Google Account (for Forms, Sheets, and Drive) Gmail/email node connected for sending notifications n8n credentials configured for Google API access --- ⚡ Setup Instructions (see more detail in workflow) Import both workflows into n8n, then copy one into a second workflow. Change manual trigger in workflow 2 to a n8n Form node. Connect Google credentials to all nodes. Update spreadsheet and folder IDs in the corresponding nodes. Customize email text, sender name, and form links for your organization. Test each workflow with a sample repair request and a repair update submission. --- 🛠️ Customization Ideas Add Slack or Telegram notifications for urgent repairs. Auto-create folders per building or unit for photo uploads. Generate monthly repair summaries using Google Sheets triggers. Add an AI node to create summaries/extract relevant repair data from repair request that include long submissions.