Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
apmadsen
Contributor
Contributor

Get the date that app was edited last via API

I need to do app backup more efficiently, by only backing up apps that actually changed (sheets, load script etc.). I know that the API exposes a method to get LastModifiedDate, however this date refers to the date that app settings was last modified, eg. through the QMC.

We're currently using Sep2017 version, and I haven't been able to find anything in the docs - hope someone knows...

2 Replies
Levi_Turner
Employee
Employee

Hey @apmadsen,

So if you're trying to find the API endpoint which will give you more granular details on what apps have changed, then I'd recommend the /qrs/app/object/ endpoints. Something like /qrs/app/object/full?orderby=modifiedDate desc will get you an ordered list newest first. From the response, you will have the App ID for further processing.

Hope that helps.

apmadsen
Contributor
Contributor
Author

Thanks, it does what I need. I'm currently mixing the .Net SDK and REST API, but I'm having trouble finding the documentation on the REST API...