⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Keep track of your schedule automatically. This workflow triggers whenever a new meeting is booked via Calendly and appends the invitee details, meeting type, and date to a Google Sheet. Great for lead tracking and sales analysis.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"events": [
"invitee.created"
]
},
"name": "Calendly Webhook",
"type": "n8n-nodes-base.calendlyTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"operation": "append",
"documentId": "YOUR_GSHEET_ID",
"sheetName": "Meetings",
"columns": {
"mappingMode": "defineBelow",
"value": [
{
"column": "Name",
"value": "={{$node[\"Calendly Webhook\"].json[\"payload\"][\"invitee\"][\"name\"]}}"
},
{
"column": "Email",
"value": "={{$node[\"Calendly Webhook\"].json[\"payload\"][\"invitee\"][\"email\"]}}"
},
{
"column": "Date",
"value": "={{$node[\"Calendly Webhook\"].json[\"payload\"][\"scheduled_event\"][\"start_time\"]}}"
}
]
}
},
"name": "Append to Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [
500,
300
]
}
],
"connections": {
"Calendly Webhook": {
"main": [
[
{
"node": "Append to Sheet",
"type": "main",
"index": 0
}
]
]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.