Resume screening & candidate routing with OpenAI, Jotform, and Google Sheets
Revolutionize your recruitment process with intelligent AI-driven candidate screening that evaluates resumes, scores applicants, and automatically routes them based on fit - saving 10-15 hours per week on initial screening.
π― What This Workflow Does
Transforms your hiring pipeline from manual resume review to intelligent automation:
- π Captures Applications - Jotform intake with resume upload
- π€ AI Resume Analysis - OpenAI parses skills, experience, education, and red flags
- π― Intelligent Scoring - Evaluates candidates against job requirements with structured scoring (0-100)
- π¦ Smart Routing - Automatically routes based on AI recommendation:
- Strong Yes (85-100): Instant Slack alert β Interview invitation
- Maybe/Yes (60-84): Manager review β Approval workflow
- No (<60): Polite rejection email
- π Analytics Tracking - All data logged to Google Sheets for hiring insights
β¨ Key Features
- AI Resume Parsing: Extracts structured data from any resume format
- Intelligent Scoring System: Multi-dimensional evaluation (skills match, experience quality, cultural fit)
- Structured Output: Consistent JSON schema ensures reliable data for decision-making
- Automated Communication: Personalized emails for every candidate outcome
- Human-in-the-Loop: Manager approval for borderline candidates
- Comprehensive Analytics: Track conversion rates, average scores, and hiring metrics
- Customizable Job Requirements: Easy prompt editing to match any role
πΌ Perfect For
- Startups & Scale-ups: Processing 50+ applications per week
- HR Teams: Wanting to reduce time-to-hire by 40-60%
- Technical Recruiters: Screening engineering, product, or design roles
- Growing Companies: Scaling hiring without scaling headcount
π§ What You'll Need
Required Integrations
- Jotform - Application intake form (free tier works) Create your form for free on Jotform using this link
- OpenAI API - GPT-4o-mini for cost-effective AI analysis (~$0.15 per candidate)
- Gmail - Automated candidate communication
- Google Sheets - Hiring database and analytics
Optional Integrations
- Slack - Instant alerts for hot candidates
- Linear/Asana - Task creation for interview scheduling
- Calendar APIs - Automated interview booking
π Quick Start
- Import Template - Copy JSON and import into n8n
- Create Jotform - Use provided field structure (name, email, resume upload, etc.)
- Add API Keys - OpenAI, Jotform, Gmail, Google Sheets
- Customize Job Requirements - Edit AI screening prompt with your role details
- Personalize Emails - Update templates with your company branding
- Test & Deploy - Submit test application and verify all nodes
π¨ Customization Options
- Adjust Scoring Thresholds: Change routing logic based on your needs
- Multiple Positions: Clone workflow for different roles with unique requirements
- Add Technical Assessments: Integrate HackerRank, CodeSignal, or custom tests
- Interview Scheduling: Connect Calendly or Google Calendar for auto-booking
- ATS Integration: Push data to Lever, Greenhouse, or BambooHR
- Diversity Tracking: Add demographic fields and analytics
- Reference Checking: Automate reference request emails
π Expected Results
- 90% reduction in manual resume review time
- 24-hour response time to all candidates
- Zero missed applications - every candidate gets feedback
- Data-driven hiring - track what works with comprehensive analytics
- Better candidate experience - fast, professional communication
- Consistent evaluation - eliminate unconscious bias with structured AI scoring
π Use Cases
Technology Companies
Screen 100+ engineering applications per week, identify top 10% instantly, schedule interviews same-day.
Agencies & Consultancies
Evaluate consultant candidates across multiple skill dimensions, route to appropriate practice areas.
High-Volume Hiring
Process retail, customer service, or sales applications at scale with consistent quality.
Remote-First Teams
Evaluate global candidates 24/7, respond instantly regardless of timezone.
π‘ Pro Tips
- Train Your AI: After 50+ applications, refine prompts based on false positives/negatives
- A/B Test Thresholds: Experiment with score cutoffs to optimize for your needs
- Build Talent Pipeline: Keep "maybe" candidates in CRM for future roles
- Track Source Effectiveness: Add UTM parameters to measure which job boards deliver best candidates
- Continuous Improvement: Weekly review of AI assessments to calibrate accuracy
π Learning Resources
This workflow demonstrates:
- AI Agents with structured output
- Multi-stage conditional routing
- Human-in-the-loop automation
- Binary data processing (resume files)
- Email automation with HTML templates
- Real-time notifications
- Analytics and data logging
Perfect for learning advanced n8n automation patterns!
Ready to transform your hiring process? Import this template and start screening candidates intelligently in under 30 minutes.
Questions or customization needs? The workflow includes detailed sticky notes explaining each section.
n8n Workflow: AI-Powered Candidate Screening and Routing
This n8n workflow automates the initial screening of job applicants and routes them to appropriate channels based on their qualifications using AI. It integrates Jotform for application submission, OpenAI for resume analysis, Google Sheets for tracking, and Slack/Gmail for notifications.
What it does
This workflow streamlines the candidate screening process with the following steps:
- Triggers on New Jotform Submission: Listens for new job applications submitted through a Jotform.
- Extracts Resume Data: Retrieves the resume file URL from the Jotform submission.
- Downloads Resume: Downloads the resume file using an HTTP Request node.
- Analyzes Resume with OpenAI: Sends the resume content to an OpenAI Chat Model to extract key information (e.g., candidate name, email, experience, skills) and evaluate suitability for a position.
- Parses AI Output: Uses a Structured Output Parser to convert the OpenAI response into a structured JSON format.
- Determines Candidate Fit: An 'If' node evaluates the AI-generated assessment to determine if the candidate is a "Good Fit" or "Not a Good Fit."
- Logs to Google Sheets: Appends candidate details and AI assessment to a Google Sheet for record-keeping, regardless of fit.
- Routes "Good Fit" Candidates:
- Sends an internal notification to a designated Slack channel with candidate details and a link to their resume.
- Sends a personalized email to the candidate via Gmail, acknowledging their application and potentially outlining next steps.
- Routes "Not a Good Fit" Candidates:
- Sends a polite rejection email to the candidate via Gmail.
- Sends an internal notification to a different Slack channel (or the same channel with a different message) for "Not a Good Fit" candidates.
Prerequisites/Requirements
To use this workflow, you will need the following accounts and API keys:
- n8n Account: Self-hosted or cloud.
- Jotform Account: With a form configured for job applications, including a file upload field for resumes.
- OpenAI API Key: For accessing the OpenAI Chat Model.
- Google Sheets Account: With a spreadsheet set up to log candidate information.
- Slack Account: For internal notifications.
- Gmail Account: For sending emails to candidates.
Setup/Usage
- Import the workflow: Download the JSON provided and import it into your n8n instance.
- Configure Credentials:
- Jotform Trigger: Set up your Jotform credential and select the specific form you want to monitor.
- OpenAI Chat Model: Configure your OpenAI API key credential.
- Google Sheets: Set up your Google Sheets credential and specify the Spreadsheet ID and Sheet Name where candidate data should be logged.
- Slack: Configure your Slack credential and specify the channel IDs for notifications.
- Gmail: Set up your Gmail credential for sending emails.
- Customize Nodes:
- Jotform Trigger: Ensure the "Form ID" matches your job application form.
- HTTP Request (Download Resume): Verify the URL expression correctly extracts the resume file URL from the Jotform output.
- OpenAI Chat Model: Adjust the prompt to fine-tune the resume analysis based on your job requirements. Ensure the output format requested in the prompt aligns with the Structured Output Parser's expectations.
- Structured Output Parser: Define the schema for the expected JSON output from OpenAI.
- If Node: Customize the conditions to accurately identify "Good Fit" candidates based on the AI assessment (e.g.,
{{ $json.fit === 'Good Fit' }}). - Google Sheets: Map the fields from the AI assessment and Jotform submission to the columns in your Google Sheet.
- Slack Nodes: Customize the messages for "Good Fit" and "Not a Good Fit" notifications, including relevant candidate details.
- Gmail Nodes: Personalize the email templates for "Good Fit" and "Not a Good Fit" candidates.
- Activate the Workflow: Once all configurations are complete, activate the workflow. It will now automatically process new Jotform submissions.
Related Templates
Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax
Spark your creativity instantly in any chatβturn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. π What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing π§ Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation π Required Credentials OpenAI API Setup Go to platform.openai.com β API keys (sidebar) Click "Create new secret key" β Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai β Dashboard β API Keys Generate a new API key β Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) βοΈ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflowβchat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" π― Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration β οΈ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions
Automate Dutch Public Procurement Data Collection with TenderNed
TenderNed Public Procurement What This Workflow Does This workflow automates the collection of public procurement data from TenderNed (the official Dutch tender platform). It: Fetches the latest tender publications from the TenderNed API Retrieves detailed information in both XML and JSON formats for each tender Parses and extracts key information like organization names, titles, descriptions, and reference numbers Filters results based on your custom criteria Stores the data in a database for easy querying and analysis Setup Instructions This template comes with sticky notes providing step-by-step instructions in Dutch and various query options you can customize. Prerequisites TenderNed API Access - Register at TenderNed for API credentials Configuration Steps Set up TenderNed credentials: Add HTTP Basic Auth credentials with your TenderNed API username and password Apply these credentials to the three HTTP Request nodes: "Tenderned Publicaties" "Haal XML Details" "Haal JSON Details" Customize filters: Modify the "Filter op ..." node to match your specific requirements Examples: specific organizations, contract values, regions, etc. How It Works Step 1: Trigger The workflow can be triggered either manually for testing or automatically on a daily schedule. Step 2: Fetch Publications Makes an API call to TenderNed to retrieve a list of recent publications (up to 100 per request). Step 3: Process & Split Extracts the tender array from the response and splits it into individual items for processing. Step 4: Fetch Details For each tender, the workflow makes two parallel API calls: XML endpoint - Retrieves the complete tender documentation in XML format JSON endpoint - Fetches metadata including reference numbers and keywords Step 5: Parse & Merge Parses the XML data and merges it with the JSON metadata and batch information into a single data structure. Step 6: Extract Fields Maps the raw API data to clean, structured fields including: Publication ID and date Organization name Tender title and description Reference numbers (kenmerk, TED number) Step 7: Filter Applies your custom filter criteria to focus on relevant tenders only. Step 8: Store Inserts the processed data into your database for storage and future analysis. Customization Tips Modify API Parameters In the "Tenderned Publicaties" node, you can adjust: offset: Starting position for pagination size: Number of results per request (max 100) Add query parameters for date ranges, status filters, etc. Add More Fields Extend the "Splits Alle Velden" node to extract additional fields from the XML/JSON data, such as: Contract value estimates Deadline dates CPV codes (procurement classification) Contact information Integrate Notifications Add a Slack, Email, or Discord node after the filter to get notified about new matching tenders. Incremental Updates Modify the workflow to only fetch new tenders by: Storing the last execution timestamp Adding date filters to the API query Only processing publications newer than the last run Troubleshooting No data returned? Verify your TenderNed API credentials are correct Check that you have setup youre filter proper Need help setting this up or interested in a complete tender analysis solution? Get in touch π LinkedIn β Wessel Bulte
π How to transform unstructured email data into structured format with AI agent
This workflow automates the process of extracting structured, usable information from unstructured email messages across multiple platforms. It connects directly to Gmail, Outlook, and IMAP accounts, retrieves incoming emails, and sends their content to an AI-powered parsing agent built on OpenAI GPT models. The AI agent analyzes each email, identifies relevant details, and returns a clean JSON structure containing key fields: From β senderβs email address To β recipientβs email address Subject β email subject line Summary β short AI-generated summary of the email body The extracted information is then automatically inserted into an n8n Data Table, creating a structured database of email metadata and summaries ready for indexing, reporting, or integration with other tools. --- Key Benefits β Full Automation: Eliminates manual reading and data entry from incoming emails. β Multi-Source Integration: Handles data from different email providers seamlessly. β AI-Driven Accuracy: Uses advanced language models to interpret complex or unformatted content. β Structured Storage: Creates a standardized, query-ready dataset from previously unstructured text. β Time Efficiency: Processes emails in real time, improving productivity and response speed. *β Scalability: Easily extendable to handle additional sources or extract more data fields. --- How it works This workflow automates the transformation of unstructured email data into a structured, queryable format. It operates through a series of connected steps: Email Triggering: The workflow is initiated by one of three different email triggers (Gmail, Microsoft Outlook, or a generic IMAP account), which constantly monitor for new incoming emails. AI-Powered Parsing & Structuring: When a new email is detected, its raw, unstructured content is passed to a central "Parsing Agent." This agent uses a specified OpenAI language model to intelligently analyze the email text. Data Extraction & Standardization: Following a predefined system prompt, the AI agent extracts key information from the email, such as the sender, recipient, subject, and a generated summary. It then forces the output into a strict JSON structure using a "Structured Output Parser" node, ensuring data consistency. Data Storage: Finally, the clean, structured data (the from, to, subject, and summarize fields) is inserted as a new row into a specified n8n Data Table, creating a searchable and reportable database of email information. --- Set up steps To implement this workflow, follow these configuration steps: Prepare the Data Table: Create a new Data Table within n8n. Define the columns with the following names and string type: From, To, Subject, and Summary. Configure Email Credentials: Set up the credential connections for the email services you wish to use (Gmail OAuth2, Microsoft Outlook OAuth2, and/or IMAP). Ensure the accounts have the necessary permissions to read emails. Configure AI Model Credentials: Set up the OpenAI API credential with a valid API key. The workflow is configured to use the model, but this can be changed in the respective nodes if needed. Connect the Nodes: The workflow canvas is already correctly wired. Visually confirm that the email triggers are connected to the "Parsing Agent," which is connected to the "Insert row" (Data Table) node. Also, ensure the "OpenAI Chat Model" and "Structured Output Parser" are connected to the "Parsing Agent" as its AI model and output parser, respectively. Activate the Workflow: Save the workflow and toggle the "Active" switch to ON. The triggers will begin polling for new emails according to their schedule (e.g., every minute), and the automation will start processing incoming messages. --- Need help customizing? Contact me for consulting and support or add me on Linkedin.