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