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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
elva_lester
Contributor III
Contributor III

.NET SDK app properties

We are building a dynamic dashboard within our MVC .NET web application of available Qlik apps/sheets.  We would like to display app properties such as published date and stream.  I have searched through the app properties and cannot find them. Could someone tell me how to get published date and stream from the version 3.0 .NET SDK?

Thanks.

1 Reply
Øystein_Kolsrud
Employee
Employee

Hi! That type of app information is typically something you should get through the Repository API:

http://help.qlik.com/en-US/sense-developer/3.0/Subsystems/RepositoryServiceAPI/Content/RepositorySer...

In particular you might want to have a look at this endpoint:

App: Get hub list ‒ Qlik Sense

There is an error in that documentation though (it's reported and should be fixed shortly). The endpoint paths should be without the extra '/' between "hub" and "list". So the paths should look like this:

/qrs/app/hublist

/qrs/app/hublist/full

It is possible to access some of the information you are looking for through the SDK method IHub.GetAppList but the information you get there is not complete, so I would recommend you to look into using the repository service instead.