Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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 - Specialist
Partner - Specialist

Hi,

On Client Managed, you can use the app endpoint: https://help.qlik.com/en-US/sense-developer/February2024/APIs/RepositoryServiceAPI/index.html?page=7...

On SaaS, you need to use the item endpoint, and filtering by app type: https://qlik.dev/apis/rest/items/#%23%2Fentries%2Fitems-get
(as described on this post: https://community.qlik.com/t5/Integration-Extension-APIs/List-of-all-apps-using-Qlik-SaaS-Rest-API/t...)

Regards

From Next Decision and mpc with love
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.