1. Batch Certificate Generation
Training CoordinatorBackground
A training coordinator needs to issue completion certificates to a batch of students who completed a course.
Problem
Manually typing names and dates into a PDF certificate template for dozens of students is slow and error-prone.
How to use
Upload the certificate PDF template, paste the student records as a JSON array, set the output mode to ZIP, and specify 'name' as the naming field.
{
"templatePdf": "certificate-template.pdf",
"recordsJson": "[{\"name\":\"Alice Zhang\",\"course\":\"Advanced TypeScript\",\"date\":\"2026-06-16\"},{\"name\":\"Bob Chen\",\"course\":\"Go Fundamentals\",\"date\":\"2026-06-16\"}]",
"outputMode": "zip",
"nameField": "name",
"flattenEach": true
}Outcome
A ZIP file containing individual, flattened PDF certificates named after each student.