Pre-filled PDF combined with Template
Thursday, August 13, 2020 at 10:17amIs it possible to pass a pre-filled PDF into or with the usage of a template? That way we can use the template for signature placement but use our filling services to fill the rest of the data.
Reply to: Pre-filled PDF combined with Template
Thursday, August 13, 2020 at 12:58pmHi Josh,
When uploading a PDF, pre-filled forms will be flattened into the PDF, which I believe fits your requirement. See below:
Duo
Reply to: Hi Josh, When uploading…
Thursday, August 13, 2020 at 01:06pmYes but what is the appropriate API call? There is no documentation that states how to "upload a pre-filled form and merge it with a template with signatures".
Reply to: Pre-filled PDF combined with Template
Thursday, August 13, 2020 at 01:25pmHi Josh,
I got your point. If you want to upload a new PDF every time creating a package, but also have the fields metadata for signature replacement, you can consider to use the Layout feature instead or use together with Template feature.
Layout - using a previous document as blueprint, and apply the fields on successive documents
Since you already have the code base with a complete package creation process - add signers, specify package settings, upload document with hard coded positions, you just need to replace the document building part with the applying layout function, with layout ID or Name:
eslClient.LayoutService.ApplyLayout(packageId, "documentId", "layoutId");
or
eslClient.LayoutService.ApplyLayout(packageId, "documentId", "layoutName");
What you've pointed out in this post is exactly the main defect of using template, that you can't replace the document content when you create a package out of the template, or to use the field injection feature to pre-filled forms - a filling capability provided by OneSpan Sign.
Duo
Reply to: Pre-filled PDF combined with Template
Monday, August 31, 2020 at 02:56amHey Josh,
If you need to edit or add something on your pdf I can recommend you to use online editors. Very easy to use and it's free. I use
https://pdfchef.com/ when I need to edit my pdf documents.
James