← Back
Generate ad copy from Zoom and send to Trello card
n8n_2000_workflows / generate-ad-copy-zoom-trello-card.json
Complexity: mediumNodes: 5
adai:basecardcopydataerrorfetchfromgenerategenerate-ad-copy-zoom-trello-card.jsonhttprequestincomingmediumn8nn8n_2000_workflowsnodesopenaiapisendslacktotrellotriggerwebhookzoom
Node Overview
- Incoming Trigger – n8n-nodes-base.webhook
- Fetch data from Zoom – n8n-nodes-base.httpRequest
- AI: Generate Ad Copy – n8n-nodes-base.openAIApi
- Send to Trello card – n8n-nodes-base.httpRequest
- Send Error to Slack – n8n-nodes-base.slack
Workflow JSON
{ "name": "Generate ad copy from Zoom and send to Trello card", "nodes": [ { "id": "trigger-zoom", "name": "Incoming Trigger", "type": "n8n-nodes-base.webhook", "typeVersion": 1, "position": [ -600, 7700 ], "parameters": { "httpMethod": "POST", "path": "generate-ad-copy-from-zoom-and-send-to-trello-card", "responseCode": 200, "responseMode": "onReceived" } }, { "id": "fetch-zoom", "name": "Fetch data from Zoom", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ -300, 7700 ], "parameters": { "method": "GET", "url": "https://api.example.com/zoom", "responseFormat": "json" } }, { "id": "ai-generate-ad-copy", "name": "AI: Generate Ad Copy", "type": "n8n-nodes-base.openAIApi", "typeVersion": 1, "position": [ 0, 7700 ], "parameters": { "model": "gpt-4", "operation": "complete", "prompt": "Perform the following action on the incoming data: generate ad copy" } }, { "id": "send-trello-card", "name": "Send to Trello card", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ 300, 7700 ], "parameters": { "method": "POST", "url": "https://api.example.com/trello-card", "responseFormat": "json", "options": {} } }, { "id": "error-handler-600-7700", "name": "Send Error to Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [ 600, 7700 ], "parameters": { "resource": "message", "operation": "post", "channel": "#automation-alerts", "text": "={{ $json.get('error_message', 'An error occurred') }}" } } ], "connections": { "Incoming Trigger": { "main": [ [ { "node": "Fetch data from Zoom", "type": "main", "index": 0 } ] ] }, "Fetch data from Zoom": { "main": [ { "node": "AI: Generate Ad Copy", "type": "main", "index": 0 } ] }, "AI: Generate Ad Copy": { "main": [ [ { "node": "AI: Generate Ad Copy", "type": "main", "index": 0 } ] ] }, "Send to Trello card": { "main": [ [ { "node": "Send Error to Slack", "type": "main", "index": 0 } ] ] } }, "settings": {}, "active": false }