Multiple value scan from one QR Code

0
Hello, currently I have a QR code containing multiple data values such as name, age, birthdate, and joindate.When I scan this QR code, I need to extract all these values and store them into specific fields in a table.Right now, with one scan, I am only able to retrieve and store one value.
asked
1 answers
0

How is the QR code being created ? Is it created by your app or a process owned by you. If yes, you can encode a JSON into QR code, so when you scan the QR code, you will get the JSON string. Using the JSON string, you can extract the key and values and map into Entity object.

 

If the QR code is generated outside of your control, then look at the output of the QR code scanner. It should be a String text

 

Either way, the output of QR scanner is a String Text Value. Pass that to a Microflow or a Java Action and Write the logic to extract all the relevant data and map it into an Entity object. It is possible to do it.

answered