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}')
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.