Prompt Details
Model
(gemini-3.1-pro)
Token size
250
Example input
[INSERT TRIGGER APP OR WEBHOOK HERE]: Stripe (New Payment)
[INSERT DESTINATION APP OR DATABASE HERE]: Slack & Google Sheets
[INSERT ANY DATA FILTERING, IF/ELSE CONDITIONS, OR FORMATTING NEEDED HERE]: Only send to Slack if the payment is over $100. Always log all payments in Google Sheets.
Example output
{
"nodes": [
{
"parameters": {
"events": [
"charge.succeeded"
]
},
"id": "e4f8d9b2-1a2b-3c4d-5e6f",
"name": "Stripe Trigger",
"type": "n8n-nodes-base.stripeTrigger",
"typeVersion": 1,
"position": [ 220, 300 ]
},
{
"parameters": {
"operation": "append",
"documentId": {
"__rl": true,
"value": "YOUR_SHEET_ID",
"mode": "id"
},
"sheetName": {
"__rl": true,
"value": "Sheet1",
"mode": "list"
},
"columns": {
"mappingMode": "defineBelow",
"value": {
"Amount": "={{ $json.data.object.amount / 100 }}",
"Email": "={{ $json.data.object.receipt_email }}"
}
}
},
"id": "f5g6h7i8-9j0k-1l2m-3n4o",
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [ 460, 180 ]
},
{
"parameters": {
"conditions": {
"number": [
{
"value1": "={{ $json.data.object.amount / 100 }}",
"operation": "larger",
"value2": 100
}
]
}
},
"id": "a1b2c3d4-e5f6-g7h8-i9j0",
"name": "IF > $100",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [ 460, 420 ]
},
{
"parameters": {
"channel": "sales-alerts",
"text": "=🚨 New Large Payment: ${{ $json.data.object.amount / 100 }} from {{ $json.data.object.receipt_email }}"
},
"id": "z9y8x7w6-v5u4-t3s2-r1q0",
"name": "Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 2,
"position": [ 680, 400 ]
}
],
"connections": {
"Stripe Trigger": {
"main": [
[
{
"node": "Google Sheets",
"type": "main",
"index": 0
},
{
"node": "IF > $100",
"type": "main",
"index": 0
}
]
]
},
"IF > $100": {
"main": [
[
{
"node": "Slack",
"type": "main",
"index": 0
}
]
]
}
}
}
By purchasing this prompt, you agree to our terms of service
GEMINI-3.1-PRO
A system prompt designed to build complex, multi-step n8n automation workflows. It details how to instruct Gemini to handle complex API integrations, webhook setups, and custom data routing without manual drag-and-drop.
...more
Added 14 hours ago
