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": "Interview Prep Flow",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "prep-interview",
"responseMode": "lastNode",
"options": {}
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "=http://localhost:5000/api/interview/questions",
"method": "POST",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"jsonParameters": true,
"options": {},
"bodyParametersJson": "={{ {\"jobId\": $json.body.jobId} }}"
},
"name": "Generate Questions",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
450,
300
]
},
{
"parameters": {
"operation": "insert",
"collection": "interview_sessions",
"fields": "interviewId,userId,jobTitle,questionsGenerated",
"options": {}
},
"name": "Save Session",
"type": "n8n-nodes-base.mongoDb",
"typeVersion": 1,
"position": [
650,
300
]
},
{
"parameters": {
"url": "=http://localhost:5000/webhook/notify-interview-ready",
"method": "POST",
"jsonParameters": true,
"options": {},
"bodyParametersJson": "={{ {\"userId\": $json.body.userId, \"interviewId\": $json.id, \"message\": \"Your interview prep is ready!\"} }}"
},
"name": "Notify User",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
850,
300
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Generate Questions",
"type": "main",
"index": 0
}
]
]
},
"Generate Questions": {
"main": [
[
{
"node": "Save Session",
"type": "main",
"index": 0
}
]
]
},
"Save Session": {
"main": [
[
{
"node": "Notify User",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Interview Prep Flow. Uses httpRequest, mongoDb. Webhook trigger; 4 nodes.
Source: https://github.com/VEDESH18/AI_Autointern/blob/73444cd3d27bbb7f1542ddfa3d8837184f7781fc/n8n-workflows/interview_prep.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.
CyberShield Universal Workflow v4. Uses mongoDb, ssh, httpRequest. Webhook trigger; 7 nodes.
UFRO PP3 Orchestrator Workflow. Uses httpRequest, mongoDb. Webhook trigger; 7 nodes.
CyberShield — Attack Executor. Uses mongoDb, ssh, httpRequest. Webhook trigger; 6 nodes.
CyberShield — Attack Executor. Uses mongoDb, ssh, httpRequest. Webhook trigger; 6 nodes.
Seoul hackathon. Uses httpRequest, mongoDb. Webhook trigger; 5 nodes.