I'm currently designing an app to display some attributes of products I have in a pricelist which is stored in a Google Sheets spreadsheet and I want it to get that data and show it
I have a google script which extracts all the data from the spreadsheet and returns a JSON. It's published as a web app and stored in a non visible component "Web1"
What I don't know how to do is to work with that JSON and select a particular row based on an ID that I get from a barcode scanner
I want it to work like this:
I currently have this:
The web component works asynchronously, which means, first send the Get request and after having received the response in the GotText event, then do the further processing.