← Back
Schedule time from Calendar event and send to Google Calendar
n8n_2000_workflows / schedule-time-calendar-event-google-calendar.json
Complexity: simpleNodes: 4
basecalendardataerroreventfetchfromgooglehttprequestincomingn8nn8n_2000_workflowsnodesscheduleschedule-time-calendar-event-google-calendar.jsonsendsimpleslacktimetotriggerwebhook
Node Overview
- Incoming Trigger – n8n-nodes-base.webhook
- Fetch data from Calendar event – n8n-nodes-base.httpRequest
- Send to Google Calendar – n8n-nodes-base.httpRequest
- Send Error to Slack – n8n-nodes-base.slack
Workflow JSON
{ "name": "Schedule time from Calendar event and send to Google Calendar", "nodes": [ { "id": "trigger-calendar-event", "name": "Incoming Trigger", "type": "n8n-nodes-base.webhook", "typeVersion": 1, "position": [ -600, 184200 ], "parameters": { "httpMethod": "POST", "path": "schedule-time-from-calendar-event-and-send-to-google-calendar", "responseCode": 200, "responseMode": "onReceived" } }, { "id": "fetch-calendar-event", "name": "Fetch data from Calendar event", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ -300, 184200 ], "parameters": { "method": "GET", "url": "https://api.example.com/calendar-event", "responseFormat": "json" } }, { "id": "send-google-calendar", "name": "Send to Google Calendar", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ 300, 184200 ], "parameters": { "method": "POST", "url": "https://api.example.com/google-calendar", "responseFormat": "json", "options": {} } }, { "id": "error-handler-600-184200", "name": "Send Error to Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [ 600, 184200 ], "parameters": { "resource": "message", "operation": "post", "channel": "#automation-alerts", "text": "={{ $json.get('error_message', 'An error occurred') }}" } } ], "connections": { "Incoming Trigger": { "main": [ [ { "node": "Fetch data from Calendar event", "type": "main", "index": 0 } ] ] }, "Fetch data from Calendar event": { "main": [ { "node": "Send to Google Calendar", "type": "main", "index": 0 } ] }, "Send to Google Calendar": { "main": [ [ { "node": "Send Error to Slack", "type": "main", "index": 0 } ] ] } }, "settings": {}, "active": false }