Select to view content in your preferred language

AGOL Member creation date sort ?

1385
2
09-24-2019 10:42 PM
MarkChilcott
Frequent Contributor

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

Tags (2)
0 Kudos
2 Replies
NikolajGrønholdt
Esri Contributor

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'))

You could create a list of the users in Python, and sort it based on their creation date.

0 Kudos
MarkChilcott
Frequent Contributor

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.

0 Kudos