This workflow follows the Gmail Trigger → HTTP Request recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "V.NOTEBOOK - Gmail Watch",
"nodes": [
{
"parameters": {
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
},
"filters": {
"readStatus": "unread"
}
},
"name": "Gmail Trigger",
"type": "n8n-nodes-base.gmailTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://localhost:8000/api/webhooks/email",
"sendBody": true,
"contentType": "json",
"bodyParameters": {
"parameters": [
{
"name": "email_id",
"value": "={{$json.id}}"
},
{
"name": "from",
"value": "={{$json.from}}"
},
{
"name": "subject",
"value": "={{$json.subject}}"
},
{
"name": "body",
"value": "={{$json.text}}"
},
{
"name": "received_at",
"value": "={{$json.date}}"
}
]
},
"options": {}
},
"name": "Send to V.NOTEBOOK",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
450,
300
]
}
],
"connections": {
"Gmail Trigger": {
"main": [
[
{
"node": "Send to V.NOTEBOOK",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
V.NOTEBOOK - Gmail Watch. Uses gmailTrigger, httpRequest. Event-driven trigger; 2 nodes.
Source: https://github.com/VISVA-Ai/V.NOTEBOOK/blob/09b0af3d9d11da5f4ca5e19b52bf4097c7c5c798/workflows/gmail_watch.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Enterprise Invoice Intake (Gmail → DocIntel → ClickUp → StreamPulse). Uses gmailTrigger, httpRequest, clickUp. Event-driven trigger; 5 nodes.
InquiryPilot - Gmail to Sheets and Draft. Uses gmailTrigger, httpRequest, googleSheets, gmail. Event-driven trigger; 4 nodes.
Spam-Ham-N8N. Uses gmailTrigger, httpRequest, gmail. Event-driven trigger; 4 nodes.
This workflow ingests proof-of-delivery and completion documents from Gmail or a webhook, extracts key fields with an OpenRouter vision model, reconciles them against Google Sheets dispatch data, arch
Limit. Uses gmailTrigger, httpRequest, limit, respondToWebhook. Event-driven trigger; 40 nodes.