Create .env file and update with your Apryse license key
cp .env.example .env
Goal: Personalize your WebViewer instance Tasks:
- Initialize WebViewer using React
- Remove the print button
- Change the theme to dark
- Add a company logo to the header
Helpful Docs Links
-
Initialize WebViewer quick start
-
Remove print button disable elements
-
Change theme to dark set theme
-
Add company logo docs example
Goal: Turn JSON into a polished, filled PDF Tasks:
- Use the Templating API to inject data into a template (e.g., invoice, certificate)
- Show the generated document in WebViewer
- Export the result as a flattened PDF
Helpful Docs Links
- Generate PDF from DOCX template docs example
Goal: Detect and redact sensitive data like emails and phone numbers Tasks:
- Load a document with fake PII.
- Use search + regex to find emails, SSNs, phone numbers, etc.
- Apply redactions to each match.
Helpful Docs Links
- Redact PII docs example
Goal: Show before-and-after versions of the document Tasks:
- Use a side-by-side WebViewer layout
- Load the original and redacted versions
- Visually confirm the redactions
Goal: Sign the redacted document and finalize it Tasks:
- Add a signature widget programmatically or from the UI.
- Sign using type/draw.
- Flatten and download the final PDF.