Is it possible for Tulip to scan a QR code, extract the text from it, populate that data into specific fields on a pre-filled form, and then generate a PDF or document with the updated information?
How can I accomplish this?
Is it possible for Tulip to scan a QR code, extract the text from it, populate that data into specific fields on a pre-filled form, and then generate a PDF or document with the updated information?
How can I accomplish this?
Hi David,
Yes, Tulip can scan your QR code, fill the form, and output a PDF.
The widget captures raw text, triggers map it to fields, and the browser print dialog lets you save the rendered step as a PDF.
Docs for setup:
Let me know if you’d like help scoping the trigger logic or PDF layout.
Hey Nicolo, I am having trouble setting up the trigger..
Hi David,
Thanks for sending your screenshot. You’re close to having this set up correctly. Here’s how to complete your trigger and get the scanned QR code data into your form fields:
SplitParts
. Create one in the Variables tab if needed.Set Variable ➜ FirstName = SplitParts[0]
Set Variable ➜ LastName = SplitParts[1]
Set Variable ➜ Email = SplitParts[2]
This setup will scan the code, fill in the form, and let you save it as a document.
Let me know if you want help reviewing your full trigger or layout.
Hi Nicolo,
I can’t find the Set Variable action like you are describing. Could you show me a screenshot of how it should look like, please?
Hi David,
Below is a filled‑in example of the trigger you are building. The key parts are the Data Manipulation → Store action and the Expression that pulls the first item from the array (SplitParts[0]
).
SplitParts[0]
.SplitParts[1]
→ LastName, SplitParts[2]
→ Email, and so on.Best,
Nicolo