Reputation: 183
There is one API to get a list of recently changed datasets in CKAN. But that API returns public datasets. Is there any API in ckan that can return all recently changed datasets that will include public and private datasets?
AVailable API that return recently changed public datasets: http://demo.ckan.org/api/3/action/recently_changed_packages_activity_list for authentication I have used "X-CKAN-API-Key"
Upvotes: 2
Views: 634
Reputation: 58
for private datasets you will have to query separately per organisation (using the api key)
e.g. to get the list of organisations: http://demo.ckan.org/api/3/action/organization_list
then for each organisation: http://demo.ckan.org/api/3/action/organization_show?id=000001
default is that packages are ordered by recent change (unless you've set it up differently)
Upvotes: -1