Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
nate
Contributor II
Contributor II

How to export data using data using engine API?

Hi all, 

I am doing a POC and was wondering what the process is for exporting data via JSON that is already within the Qlik system. I created a small sample app and just loaded some dummy data into it.  I was playing around with the Engine API Explorer in the dev tools but couldnt figure out the combination of APIs and macros that would export the dummy data that I put into the app. 

Any help is greatly appreciated! 

Labels (3)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

It depends on what "data" you want to retrieve and export.  You choices depending on what you are trying to do.

- A ListObject contains the values for a single field. 

- GetTabledata returns the rows for a single data model table. 

- A HyperCube (generally created with a CreateSessionObject) contains the rows for a set of Dimensions and Measures. 

- You can get the data from an existing visualization with GetObject(id) followed by GetHyperCubeData.

 There are higher level APIs that wrapper these but it generally boils down to the above.  

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

View solution in original post

4 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

It depends on what "data" you want to retrieve and export.  You choices depending on what you are trying to do.

- A ListObject contains the values for a single field. 

- GetTabledata returns the rows for a single data model table. 

- A HyperCube (generally created with a CreateSessionObject) contains the rows for a set of Dimensions and Measures. 

- You can get the data from an existing visualization with GetObject(id) followed by GetHyperCubeData.

 There are higher level APIs that wrapper these but it generally boils down to the above.  

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

nate
Contributor II
Contributor II
Author

Awesome thanks! GetTableData was exactly what I was looking for.

As for pulling down an entire data model -- Would you have to make a series of calls i.e. one to get all the table information for the data model (GetTablesAndKeys), and then subsequent calls to get all the data (GetTableData) with the table information provides from GetTablesAndKeys? In other words, there is not function that will just pull down the entire data model and the subsequent data, right?
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Yes, as far as I know you would need to loop through the table names and call GetTableData for each one. 

-Rob

nate
Contributor II
Contributor II
Author

Great. Thanks!