Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi - I want to extract users and their admin, tags and custom properties from qliksense via a data connection - then save and used for those who want to see without the need to use the qMC - anyone have any ideas on where this data is held outside of the QMC?
If you want it in a Qlik Sense app you can connect to the Qlik Sense QSR REST API to the users endpoint configured like "https://YourQlikSenseServer/qrs/user/full". If you have the standard Qlik Sense monitoring apps installed you probably already have a satisfactory connection to yield this data for your app called "monitor_apps_REST_user". You can invoke this in your data load editor and load the data.
If you need this data outside of Qlik Sense I'd recommend using PowerShell and installing the module called Qlik-CLI. It's very easy to use and we rely on it for a large number of things in our environment. Once you have your security worked out to use it you can issue two simple commands to get the data your looking for
Connect-Qlik NameOfYourSenseServer
Get-QlikUser -full
Thanks - the connector gives me everything I need. I will look into the command line interface though at the moment don't need it.
cheers
If you want it in a Qlik Sense app you can connect to the Qlik Sense QSR REST API to the users endpoint configured like "https://YourQlikSenseServer/qrs/user/full". If you have the standard Qlik Sense monitoring apps installed you probably already have a satisfactory connection to yield this data for your app called "monitor_apps_REST_user". You can invoke this in your data load editor and load the data.
If you need this data outside of Qlik Sense I'd recommend using PowerShell and installing the module called Qlik-CLI. It's very easy to use and we rely on it for a large number of things in our environment. Once you have your security worked out to use it you can issue two simple commands to get the data your looking for
Connect-Qlik NameOfYourSenseServer
Get-QlikUser -full
Thanks - the connector gives me everything I need. I will look into the command line interface though at the moment don't need it.
cheers