I'm trying to use use a Jupyter notebook with the arcgis.gis module to do some administration of my ArcGIS Online content.
this is the basics of what I've done so far.
----
srch = gis.content.search('',item_type = "Web Map", max_items = 500)
for s in srch:
print (s.title, " - ", s.numViews," - ", s.id)
----
I would like to be able to run a query and see all Web Maps and Web Applications that have been viewed within the past week or so. The "numViews" item that I can search on will give me the total number of views of an Map or App, but I would like to see when the views happened.
Is this possible or is there a better way to do this?
Thanks.