A common workflow for our customers is to take an existing PDF and transform it into an Airkit App, allowing their users to complete the PDF digitally. The following video walks through the basics of taking a PDF form, uploading it, creating a Data Flow to populate the values of the form, and return a completed version of the PDF.
[block:embed] { "html": "<iframe class="embedly-embed" src="//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F2gCopCxe6KQ%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D2gCopCxe6KQ&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F2gCopCxe6KQ%2Fhqdefault.jpg&key=f2aa6fc3595946d0afc3d76cbbd25dc3&type=text%2Fhtml&schema=youtube" width="854" height="480" scrolling="no" title="YouTube embed" frameborder="0" allow="autoplay; fullscreen" allowfullscreen="true">", "url": "https://www.youtube.com/watch?v=2gCopCxe6KQ", "title": "Filling a PDF", "favicon": "https://www.youtube.com/s/desktop/15c06292/img/favicon.ico", "image": "https://i.ytimg.com/vi/2gCopCxe6KQ/hqdefault.jpg" } [/block] Reading a PDF
Starting with the blank PDF, open it up in Adobe Acrobat. In the tools panel, find the Prepare Form toolbar. With this open, a list of all the available fields to complete will be present. Take note of the fields.
asset://global:<<uuid>>
The data operation will require this URI.
Create the Data Flow
URI_TO_ASSET("asset://global:<<uuid>>")
Data to Fill contains an object where the key is the value of the label of the form field in the PDF and the value is the value to be inserted. For example:
"YR Model" is the labeled field in the PDF and "2020 Model X" is what will be filled in. The sellerName and buyerName text variables were inputs to the Data Flow.
Understanding the Output
Running the connection step produces the following output:
Copy the below code into your PDF Data Operation. Please note that all quotation marks have been escaped in order to be digested by the Airkit platform.
On the right-hand side, there is a list of fields that can be populated through the . Airkit will be able to find all of these fields when processing the file.
To import the file go to and upload the blank PDF template. Once the document has been uploaded, select the asset from the list. Copy the asset URI from the Inspector. The format is something like this:
Go to Connection Builder and create a new Data Flow. Set up the inputs to contain the fields to populate in the PDF. Set the first data operation to the type.
The Filename field is the name of the created PDF file once completed. The field is an expression editor so it can contain any Airscript. Check out to see possibilities for the names.
The PDF File Asset Identifier is a link to the asset. Take the URI from above and use the function to create the asset:
Asset settings pertain to the visibility and length of life of the asset. See the documentation on for more details.
The downloadUrl field in the output is a link to the complete PDF. This link can be returned from the data flow, stored in , or sent to the user via email.
The HTML code below is ready to be used within the PDF Data Operation. Please refer to on how to use this HTML.