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

List of all apps using Qlik SaaS Rest API

Hi,

we're creating a POC to connect to Qlik Sense SaaS using the REST API.

I was wondering if there is an API endpoint to get a list of all apps? Perhaps in a space. I cannot find it in the Rest API documentation. It would really be nice if you have an overview of all apps, after you've imported an app into Qlik SaaS, to see if the import has succeeded for example.

Labels (3)
1 Solution

Accepted Solutions
Øystein_Kolsrud
Employee
Employee

You're probably looking for this endpoint:

https://qlik.dev/apis/rest/items#%23%2Fentries%2Fitems-get

To list apps you do like this:

GET https://<url>/api/v1/items?resourceType=app

View solution in original post

2 Replies
Øystein_Kolsrud
Employee
Employee

You're probably looking for this endpoint:

https://qlik.dev/apis/rest/items#%23%2Fentries%2Fitems-get

To list apps you do like this:

GET https://<url>/api/v1/items?resourceType=app
Kwokwha
Partner - Contributor II
Partner - Contributor II
Author

Ah yes, thank you. This is what I was looking for!