Solution Handbook
A planning guide for the n8n meeting follow-up loop, including the workflow, Jodoo fields, and rollout checklist.
Open handbookN8N + JODOO
Use n8n with Jodoo to receive meeting-note webhooks, turn follow-up into structured JSON, post the action through HTTP Request, and keep owners, due dates, blockers, and status trackable.
Receive meeting notes through an n8n webhook
Prepare structured action fields in a Code or AI Agent step
Send a parseable JSON payload to Jodoo
Track owners and blockers from one action record
VIDEO WALKTHROUGH
The video shows one meeting follow-up loop: n8n receives a meeting-note webhook, prepares action fields, posts a JSON payload through HTTP Request, and Jodoo keeps the owner queue and follow-up record.
A Webhook node receives a synthetic customer onboarding review with meeting title, date, decisions, risks, and follow-up context.
A Code or AI Agent step returns the structured action object that the HTTP Request node can send to Jodoo.
The body uses a parseable JSON payload so Jodoo receives the meeting action fields instead of an object placeholder.
The writeback step maps the structured fields into a Jodoo meeting action record with owner, due date, priority, blocker, and status.
DEMO SUMMARY
The walkthrough shows how a meeting summary becomes a Jodoo action record with owner, due date, priority, blocker, status, confidence, and original workflow output.
Meeting decisions often stay in notes instead of becoming tracked work.
The meeting-note payload enters the n8n workflow through a Webhook node.
n8n prepares one action object with owner, due date, priority, blocker, and status fields.
The HTTP Request node posts the JSON payload into the Jodoo writeback step.
The test run creates a meeting action record that can move into owner queues and blocker review.
Use the handbook, blueprint, and recipe to adapt the workflow.
PLATFORM SETUP NOTES
The Jodoo record model can stay consistent, but each agent platform has a different build style, testing view, and production handoff.
n8n separates the Webhook, Code, and HTTP Request steps, so builders can inspect each input item, output item, and request body expression during the execution.
The tested workflow keeps the HTTP Request body as valid JSON instead of a stringified object placeholder, which is the main setup detail to preserve.
Before production, n8n builders should review $json paths, pinned test data, item indexing, raw body mode, and execution history for the writeback node.
This version fits technical teams that want explicit credentials, pinned test data, retry handling, and node-level debugging before adding an AI Agent node.
WORKFLOW KIT
Review the field mapping, copy the n8n workflow recipe, and use the Jodoo action tracker model before adapting the workflow to your own meeting source.
REUSABLE WORKFLOW
Transcript, note app, form, webhook source, or manual test note
Receives the webhook, prepares JSON, sends HTTP Request, and confirms the Jodoo data ID
One JSON object with the fields Jodoo needs
Posts parseable JSON to the Jodoo writeback layer
Fields, views, owner queue, blocker status, and original output
WORKFLOW LOOP
Meeting notes arrive from a transcript, note app, form, webhook source, or manual test payload.
An n8n Webhook node receives the meeting title, date, and source notes.
A Code, Set, or AI Agent step returns structured fields for decision summary, action item, owner, due date, priority, blocker, status, and confidence.
The HTTP Request node sends a parseable JSON body to the Jodoo writeback layer.
Jodoo creates the meeting action record and keeps original workflow output attached for review.
Teams work from owner queues, due-date views, blocked-item views, and follow-up dashboards.
FIELD MAPPING
| Agent or source data | Jodoo record fields |
|---|---|
| Webhook node body: meeting_title, meeting_date, source_notes | Meeting Title, Meeting Date, Source Notes |
| Code or AI Agent node output: decision_summary, action_item | Decision Summary, Action Item |
| HTTP Request JSON body: owner, due_date, priority | Owner, Due Date, Priority |
| HTTP Request JSON body: risk_or_blocker, follow_up_status | Risk or Blocker, Follow-up Status |
| Execution data: agent_confidence, response body, data ID | Agent Confidence, Original Agent Output |
AGENT RECIPE
You are a meeting follow-up assistant. Read meeting notes and return one structured action item that a team can track in Jodoo.
Use the webhook payload as context, then return JSON fields that the n8n HTTP Request node can send into the Jodoo writeback request.
Return meeting_title, meeting_date, source_notes, decision_summary, action_item, owner, due_date, priority, risk_or_blocker, follow_up_status, source_platform, and agent_confidence.
{
"meeting_title": "Customer onboarding risk review",
"meeting_date": "2026-06-04 10:30",
"decision_summary": "Keep the June 10 training date if the import sample is approved this week.",
"action_item": "Confirm data import owner and send the import sample approval request.",
"owner": "Maya Chen",
"due_date": "2026-06-05",
"priority": "High",
"risk_or_blocker": "Training date may slip if the import sample is not approved by Friday.",
"follow_up_status": "Needs owner confirmation",
"source_platform": "n8n",
"agent_confidence": "0.86"
}JODOO STARTER APP
Use the field model, suggested views, and automation rules when you adapt the n8n meeting action workflow for your team.
ROLLOUT CHECKLIST
Workflow kit
Keep the setup details for your team
A planning guide for the n8n meeting follow-up loop, including the workflow, Jodoo fields, and rollout checklist.
Open handbookThe Jodoo field model, recommended views, and n8n writeback mapping for adapting the meeting action tracker.
Open blueprintThe n8n workflow shape, structured output schema, sample notes, expected JSON, HTTP Request body setup, and Jodoo field mapping.
Open recipeWORKFLOW
n8n is useful when teams want node-level control. The Webhook, Code, and HTTP Request nodes make the payload and Jodoo writeback easy to inspect before production use.
Meeting notes arrive from a transcript, note app, form, webhook source, or manual test payload.
An n8n Webhook node receives the meeting title, date, and source notes.
A Code, Set, or AI Agent step returns structured fields for decision summary, action item, owner, due date, priority, blocker, status, and confidence.
The HTTP Request node sends a parseable JSON body to the Jodoo writeback layer.
Jodoo creates the meeting action record and keeps original workflow output attached for review.
Teams work from owner queues, due-date views, blocked-item views, and follow-up dashboards.
JODOO RECORD
Jodoo keeps the follow-up fields the team needs after the n8n run: meeting title, decision summary, action item, owner, due date, priority, blocker, status, and confidence.
TEST RUN
The screenshots use synthetic meeting notes and show the n8n workflow configuration, a successful three-node execution, and the Jodoo table row created by the workflow.

Webhook, Code, and HTTP Request nodes form the meeting-note action tracking flow.

The Webhook, Code, and HTTP Request nodes completed after posting the meeting action to Jodoo.

The action item, owner, due date, priority, blocker, and status were written into Jodoo.
FAQ
Answers about using agent platforms with Jodoo records, workflows, and app templates.
Yes. The proof run used synthetic meeting notes, completed the Webhook, Code, and HTTP Request nodes, and created a meeting action record in Jodoo.
The test used n8n Cloud trial access and a compact workflow shape. Production use may require paid hosting, connected apps, model credentials, or higher execution limits depending on volume.
Yes. The proof uses an explicit Code step so the output is inspectable, and teams can replace it with an n8n AI Agent after connecting their preferred model credentials.
Jodoo stores the meeting title, date, source notes, decision summary, action item, owner, due date, priority, blocker, follow-up status, confidence, and original output.
The Jodoo record model is similar, but this page shows n8n-specific setup: Webhook node, Code output, HTTP Request body expression, execution view, and n8n production caveats.
NEXT STEP
Start with one meeting action item, then adapt the same n8n pattern to onboarding calls, project reviews, support escalations, and vendor follow-up.