Table of Contents

Automate Job Application Form Using CraftMyPDF & N8n

TL;DR

This guide shows you how to automate job application PDF generation using n8n (a workflow automation tool) and CraftMyPDF (a PDF generation API).

When a candidate submits a job application form, n8n captures the data via a webhook, sends it to CraftMyPDF, and generates a professionally formatted PDF application document, automatically saved to Google Drive or emailed to HR.

  • What you’ll build: A workflow where form submissions trigger automatic PDF generation of formatted job applications.
  • Cost: Free tiers available for both tools. CraftMyPDF offers 100 PDFs/month free. n8n is free if self-hosted.
  • Technical skill needed: Minimal. n8n is a visual workflow builder.
  • Best for: HR teams, recruiters, staffing agencies, or any business processing job applications that need standardized PDF records.
PDF automation, simplified
Stop manually creating PDFs
Design once, generate thousands. CraftMyPDF turns reusable templates into pixel-perfect PDFs — automatically. Free plan, no credit card.
Try it free →

1. How Automate Job Application Form Works

Here’s the flow:

  1. Candidate submits a form via any form tool (Typeform, Google Forms, Tally, or n8n’s own form node)
  2. n8n receives the data via webhook trigger
  3. n8n sends data to CraftMyPDF using the built-in CraftMyPDF node
  4. CraftMyPDF generates the PDF and returns a download URL
  5. n8n downloads the PDF using an HTTP Request node with the file URL
  6. n8n delivers the PDF by saving to Google Drive, emailing to HR, or both

Total time per application: 3-5 seconds vs. manual formatting.

2. Prerequisites

ServiceWhat You NeedFree Tier?
n8nSelf-hosted or n8n Cloud accountYes (self-hosted is free)
CraftMyPDFAccount + API keyYes (100 PDFs/month)
Form ToolAny tool that supports webhooks (Typeform, Tally, Google Forms + Zapier, or n8n Form Trigger)Varies
Google Drive (optional)For storing generated PDFsYes

Get Your CraftMyPDF API Key

  1. Sign up at CraftMyPDF.
  2. Go to API Integration tab.
  3. Copy your API Key.
CraftMyPDF dashboard showing the API Integration page with the API key ready to copy

3. Setting Up Your PDF Template on CraftMyPDF

Step 3.1: Create a New PDF Template

  1. Click Manage Templates tab.
  2. Click Create New PDF Template.
  3. Enter a template name (e.g., “Job Application Form”).
  4. Under Choose a Starting Template, select the Job Application template from the list of available templates.
  5. Click Create Template.

Note: Learn how to create a PDF Template with CraftMyPDF, click here

CraftMyPDF Create New Template dialog with the Job Application template selected from the list

Step 3.2: Configure Template Data Fields

Click the Data tab in the editor. The default Job Application template comes with pre-filled data fields. Modify them to match your requirements. Remove address_street2, and add name_of_company:

{
  "first_name": "James",
  "last_name": "Brookes",
  "address_street": "407 Stratford Park",
  "address_city": "New York City",
  "address_state": "Colorado",
  "address_postal": "80162",
  "address_country": "United States",
  "email": "hello@craftmypdf.com",
  "phone_number": "812-824-3045",
  "name_of_company": "Craftmypdf",
  "position": "Software Engineer",
  "skills": [
    {
      "name": "Front-end programming: Javascript and Vue.js",
      "level": "high"
    },
    {
      "name": "Python Programming",
      "level": "high"
    },
    {
      "name": "Agile project management",
      "level": "mid"
    }
  ]
}

Click Validate and Format JSON to apply.

The Data tab in CraftMyPDF template editor with JSON fields for the job application form including name, address, skills array

Step 3.3: Design the PDF Template Layout

Switch to the Designer tab. The template already has a pre-built layout with bound data fields. You can drag and drop components, resize, and rearrange them to adjust the layout according to your needs. The key sections are:

  • Header: Company logo + “Job Application” title
  • Personal Info Section: First name, last name, DOB, email, phone number
  • Address Section: Street, city, state, postal code, country
  • Job Details Section: Company name, position applied for
  • Skills Section: Skill names with proficiency levels

Text components are bound to data fields using expressions like {{ data.first_name }}, {{ data.position }}, {{ data.skills[0].name }}, etc.

Once you’re done designing, click the Preview tab to check how the final PDF will look with your sample data.

CraftMyPDF Designer tab showing the job application template layout with drag-and-drop sections for personal info, address, and skills

Step 3.4: Save and Copy the Template ID

  1. Click Save.
  2. Go back to Manage Templates.
  3. Copy the Template ID displayed next to your template name.
Manage Templates page in CraftMyPDF with the Template ID visible next to the template name

4. Building the n8n Workflow

Step 4.1: Create a New Workflow

  1. Open n8n (self-hosted or cloud) -> Click New Workflow.
  2. Name it “Job Application PDF Generator”.

Step 4.2: Add the Form Trigger Node

  1. Click + -> Search “n8n Form Trigger” -> Select it.
  2. Enter a Form Title (e.g., “Job Application Form”). This is the heading candidates will see on the form page.
  3. Click Add Form Element to add each field. For every element, set:
    • Label: the field name displayed on the form (e.g., “First Name”)
    • Element Type: the input type (Text, Email, Number, etc.)
  4. Add the following form elements:
LabelElement Type
First NameText
Last NameText
EmailEmail
Phone NumberNumber
Address StreetText
Address CityText
Address StateText
Address PostalText
Address CountryText
Company NameText
PositionText
Skill 1 NameText
Skill 1 LevelText
Skill 2 NameText
Skill 2 LevelText
Skill 3 NameText
Skill 3 LevelText

5. After adding all the form elements, click the X (close) button to close the Form Trigger configuration panel.

n8n Form Trigger node configuration panel with all form fields (name, email, address, skills) added

Step 4.3: Add the CraftMyPDF Node

  1. Click + after the trigger -> Search “CraftMyPDF” -> Select it.
  2. Click Create PDF to select the operation.
  3. Fill in the following parameters:
    • Credential: Paste your CraftMyPDF API key, and save.
    • Template ID: Paste your template ID from Step 3.4.
  4. In the Data field, paste the following JSON:
{
  "first_name": "{{ $json['First Name'] }}",
  "last_name": "{{ $json['Last Name'] }}",
  "email": "{{ $json['Email'] }}",
  "phone_number": "{{ $json['Phone Number'] }}",
  "address_street": "{{ $json['Address Street'] }}",
  "address_city": "{{ $json['Address City'] }}",
  "address_state": "{{ $json['Address State'] }}",
  "address_postal": "{{ $json['Address Postal'] }}",
  "address_country": "{{ $json['Address Country'] }}",
  "name_of_company": "{{ $json['Company Name'] }}",
  "position": "{{ $json['Position'] }}",
  "skills": [
    { "name": "{{ $json['Skill 1 Name'] }}", "level": "{{ $json['Skill 1 Level'] }}" },
    { "name": "{{ $json['Skill 2 Name'] }}", "level": "{{ $json['Skill 2 Level'] }}" },
    { "name": "{{ $json['Skill 3 Name'] }}", "level": "{{ $json['Skill 3 Level'] }}" }
  ]
}

Important: The n8n Form Trigger outputs field names exactly as you typed the labels (with spaces and capitalization). Use bracket notation $json[‘Field Name’] to reference them, not dot notation like $json.field_name.

CraftMyPDF node in n8n configured with template ID, credentials, and JSON properties mapping form data

Step 4.4: Download the Generated PDF File

  1. Click + -> Add an HTTP Request node.
  2. Configure:
FieldValue
MethodGET
URL{{ $json.file }} (maps to the PDF URL returned by the CraftMyPDF node)

Once this node executes, you will see a download button in the node’s output panel. You can click it to directly download and verify the generated PDF.

Step 4.5: Save PDF to Google Drive (Optional)

  1. Click + -> Search “Google Drive” -> Select Upload File.
  2. Connect your Google account.
  3. Configure:
FieldValue
FolderSelect your target folder (e.g., “Job Applications”)
File Name{{ $('Webhook').item.json.full_name }}_application.pdf
Binary Propertydata (from the HTTP download node)

Step 4.6: Send PDF via Email Notification (Optional)

  1. Click + -> Search “Send Email” or “Gmail” -> Select it.
  2. Configure:
FieldValue
Tohr@yourcompany.com
SubjectNew Application: {{ $('Webhook').item.json.position_applied_for }} - {{ $('Webhook').item.json.full_name }}
BodyNew job application received. PDF attached.
AttachmentBinary data from the download node

5. Testing the Complete Flow

  1. Click Test Workflow in n8n.
  2. Submit a test entry through your form (or use the “Test URL” if using Webhook trigger with test data).
  3. Check each node’s output:
    • Trigger node: should show the form data
    • CraftMyPDF node: should return {"status": "success", "file": "https://..."}
    • Download node: should show binary file data with a download button to directly download the PDF
    • Google Drive / Email node: should confirm delivery
  4. Click the download button in the Download node’s output to open the PDF and verify all fields are populated correctly.
The complete n8n workflow with all nodes connected: Form Trigger, CraftMyPDF, and HTTP Request (
Final generated PDF output with all form data populated in the Job Application template

6. Troubleshooting

ProblemCauseSolution
401 Unauthorized from CraftMyPDFWrong or missing API keyRe-copy from API Integration tab
404 from CraftMyPDFWrong template IDRe-copy from Manage Templates page
Empty fields in PDFField name mismatchNames are case-sensitive. Ensure exact match between JSON keys and template data fields
Webhook not receiving dataWorkflow not active, or wrong URLActivate workflow, use Production URL (not Test URL)
PDF link expiredDefault expiration too shortIncrease expiration value in the request body (value is in minutes)
Google Drive upload failsOAuth token expiredReconnect Google credentials in n8n
Large cover letter text cut offTemplate text area too smallResize the text component in CraftMyPDF editor or enable auto-expand

Conclusion

You now have a fully automated job application PDF generation workflow. With n8n handling the workflow automation and CraftMyPDF generating professional PDF documents, every job application that comes through your form is automatically converted into a clean, standardized PDF. No manual formatting, no copy-pasting, no delays.

Once active, this automation runs 24/7. HR receives a formatted job application PDF in their Google Drive or inbox within seconds of form submission.

Sign up for CraftMyPDF (free, no credit card) and download n8n to build this job application automation in under 30 minutes.

Recommended
The fastest way to generate PDFs
Reusable templates + dynamic data = pixel-perfect PDFs at scale. Free plan, no card.
Start free →

Additional Resources and Documentation

Recent Posts
blog

Reporting Automation for PDF Reports and Business Workflows

Reporting automation makes it easier to create consistent, branded PDF reports without copying data manually between spreadsheets, dashboards, and documents.

In this guide, we walk through how automated PDF report generation works and how CraftMyPDF fits into the workflow.

Read More »
blog

How to Generate PDF Documents from Airtable Using CraftMyPDF

In this guide, we will walk through how to generate PDF documents from Airtable using the CraftMyPDF extension. The workflow is simple: prepare your Airtable base, install the extension, design your PDF template, and generate PDF invoices back into an Airtable attachment field.

Read More »
blog

The Best 7 PDF Generation APIs for HTML to PDF in 2026

In this guide, we’ll compare 7 popular PDF Generator API options for 2026 with a practical lens: features, pricing, integrations, and the features that matter day-to-day.

By the end, you should have a clear short-list of one or two tools to try first and you can validate it quickly by generating a real invoice or report from your own data.

Read More »
blog

6 Best PDF Generation APIs in 2026

From invoices, receipts, certificates, and contracts to financial statements, reports, and internal documents, PDFs remain the most widely accepted, portable, and audit‑friendly document format.

This article covers the 6 best PDF generation APIs, with real‑world positioning, pricing, strengths, weaknesses, and guidance on when to use each.

Read More »
blog

How to Generate a PDF Document using Zapier AI Agent and CraftMyPDF

In this article, you will learn how AI agents work, how to build and use Zapier AI Agents to automate tasks such as, generating PDFs using CraftMyPDF and extracting data from Airtable.

You will also see how Zapier AI Agents are different from normal Zaps, how they automate decisions, and when it makes sense to use an AI agent instead of a standard automation.

Read More »
blog

How to Automate PDF Reports With Knack and CraftMyPDF

Knack is a no-code platform that makes it simple to build custom database applications (no programming required). It’s a favorite for many businesses because it keeps all their data organized and easy to manage in one place.

In this article, you will learn how to automate reports with Knack and CraftMyPDF.

Read More »
Copyright ©2026 CraftMyPDF.com

Email us at hello@craftmypdf.com for support