Hi Peoples,
In AGOL, is there a way to determine when a member was created?
I want to list say the last 20 members created.
Cheers,
Mark
If you know Python, you can use the ArcGIS API for Python, to get the creation date of each user.
created = arcgis.gis.User(gis, user).created (datetime.fromtimestamp(created / 1000).strftime('%Y-%m-%d %H:%M:%S'))<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN></SPAN>
You could create a list of the users in Python, and sort it based on their creation date.
Use Admin Tools for ArcGIS Online
Admin Tools for ArcGIS Online
You can export the list of users to csv, then do what you need in Excel.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.