I'm curious if anyone has a strategy to programmatically (search API, Python, etc.) get a list of all survey items in an organization (and hence all survey owners as well).
When you search your content, use item_type='form'
from arcgis import GIS gis = GIS('your portal', 'user', 'password') surveys = gis.content.search( '', item_type= 'form', max_items= -1 ) for s in surveys: print(f'{s.owner:16} | {s.id:32} | {s.title}')
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.