Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
mateo12
Partner - Contributor
Partner - Contributor

How to extract information from an application published in Qlik Sense On premise by means of an Api

Good afternoon to all,

I hope you are super well, at the moment I am facing a problem and is that I need to generate an extraction of specific information from an application that I have in a Qlik Sense On premise environment where the idea is to extract the information in a file with .json extension type is this possible?

Thank you in advance

Thank you very much

Labels (1)
  • API

1 Reply
JonnyPoole
Former Employee
Former Employee

Try something like this.  It uses a folder connection to a folder that contains .json files. It will pick up top level attributes in the JSON payload.  JSON can have a lot of variability.  You may need to support arrays, child properties etc etc...  The approach below can work for very simple JSON files but it gets complex with more complicated JSON files. 

LOAD *
FROM [lib://JSONTEST/Task1json.txt]
(json, utf8);