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.name | string | required |
| company.address | string | required |
| employee.name | string | required |
| employee.title | string | required |
| employee.first_name | string | required |
| employee.start_date | string | required |
| employee.employment_type | string | required |
| addressee | string | required |
| hr_contact.name | string | required |
| hr_contact.email | string | required |
| hr_contact.title | string | required |
| letter_date | string | required |
| salary_statement | string | required |
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.