I’ve got a zap setup to run a Custom SQL Query that looks like this:
Select Top (10) IDS_ID,IDS_ProductCode,IDS_Description,IDS_Quantity,IDS_UnitPrice,IDS_PriceExt,IDS_Printable
From InvoiceDetail
WHERE IDS_IV_ID LIKE '{{116817588__IV_ID}}' and IDS_Printable LIKE '1' and IDS_ProductCode IS NOT NULL
ORDER BY IDS_ID FOR json PATH
This works well and I get a result of this when I test it:
"{"IDS_ID":1447019,"IDS_ProductCode":"PC-WP100","IDS_Description":"Applied Waterproofing System 100 to Foundation","IDS_Quantity":1.000000000000000e+000,"IDS_UnitPrice":686.00,"IDS_PriceExt":686.00,"IDS_Printable":true},{"IDS_ID":1447020,"IDS_ProductCode":"PC-SD","IDS_Description":"Installed Strip Drain around Foundation","IDS_Quantity":0.000000000000000e+000,"IDS_UnitPrice":0.00,"IDS_PriceExt":0.00,"IDS_Printable":true},{"IDS_ID":1447021,"IDS_ProductCode":"PC-CD","IDS_Description":"Installed Crawl Drain(s)","IDS_Quantity":0.000000000000000e+000,"IDS_UnitPrice":0.00,"IDS_PriceExt":0.00,"IDS_Printable":true}]
Now I need help parsing that data and I’m not sure if it’s possible. I’m ultimately trying to end up in a Google Doc and I have fields on the Doc that I can map to. I just need to be able to parse this data so I can select where to map it. I thought I could use Python or Java but I’m unfamiliar with code so I really don’t know how to proceed. Can someone assist?