Send PDF files using Restlet endpoints

The solution is send the PDF file base64 content as in Restlet script response.

The logic for sending base64 content.

let pdfFile = genPDF(); // Replace this with your PDF generation logic
return {
fileName: pdfFile.getName(),
fileContent: pdfFile.getContents()
};

Leave a comment

Your email address will not be published. Required fields are marked *