Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Rahul11
Contributor
Contributor

Get qlik sense api list

Is it possible to get the list of all the apps from Qlik sense using an Api?

if yes, please provide a sample Api.

Labels (1)
2 Replies
mpc
Partner - Creator III
Partner - Creator III

anthonyjones
Contributor
Contributor


@Rahul11 wrote:

Is it possible to get the list of all the apps from Qlik sense using an Api?

if yes, please provide a sample Api.


Yes, it is possible to get the list of all apps from Qlik Sense using an API. Qlik Sense provides a comprehensive set of APIs that allow for various interactions with the platform, including retrieving lists of apps. Dog Near Me

To get a list of apps, you can use the GetDocList method provided by the Qlik Engine JSON API.

Here’s a sample API call using this method:

 

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "GetDocList",
  "handle": -1,
  "params": []
}

 

This method will return a list of Qlik Sense documents (apps) that the currently authenticated user has access to1. You can send this as a JSON-RPC request to your Qlik Sense Engine API endpoint.