ppaperbrainTemplates
Sign inGet started
← All templates
HR & People

Employment Verification

Verification letter — employee, role, tenure, employment type, and an optional salary statement.

The contract

Fields your API call provides. Amounts and totals are always computed by the caller — templates only format.

company.namestringrequired
company.addressstringrequired
employee.namestringrequired
employee.titlestringrequired
employee.first_namestringrequired
employee.start_datestringrequired
employee.employment_typestringrequired
addresseestringrequired
hr_contact.namestringrequired
hr_contact.emailstringrequired
hr_contact.titlestringrequired
letter_datestringrequired
salary_statementstringrequired

MCP-ready: forks of this template will expose generate_employment_verification when the MCP server ships.

Generate it (after you fork & publish)

curl -X POST https://your-paperbrain-host/api/generate/gen_<your-id> \
  -H "Content-Type: application/json" \
  -d '{
    "company": {
      "name": "Lumen Labs",
      "address": "550 Mission Street, Floor 12, San Francisco, CA 94105"
    },
    "employee": {
      "name": "Jordan Reyes",
      "title": "Senior Product Engineer",
      "first_name": "Jordan",
      "start_date": "2024-03-04",
      "employment_type": "full-time"
    },
    "addressee": "Parkview Property Management",
    "hr_contact": {
      "name": "Maria Chen",
      "email": "people@lumenlabs.example",
      "title": "Head of People Operations"
    },
    "letter_date": "2026-06-10",
    "salary_statement": "Jordan's current annual base salary is $198,000, paid semi-monthly."
  }'

gen_<your-id>is your generator's id once you fork and publish. The body shown is this template's sample data — the exact shape the contract validates.