Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
northerner
Partner - Contributor III
Partner - Contributor III

QlikSense Engine API: get user who last updated an app

I'm using the engine api to gather some housekeeping information on the Qlik apps hosted on our server.  I want to get the username of the person who last updated each app.  The problem is that I can't find a method that includes this attribute in the output json.

Does anyone know if it's possible to get this information (and if so, how do you get it)?

1 Reply
Øystein_Kolsrud
Employee
Employee

I think you can get information similar to what you are looking for if you call the QRS endpoint GET /qrs/app/<appid>. It will return information that looks something like this:

{"id":"<appid>"

,"createdDate":"2018-08-06T10:14:31.455Z"

,"modifiedDate":"2018-08-06T12:14:12.059Z"

,"modifiedByUserName":"<domain>\<user>"

,"customProperties":[]

...

}