How to Export all Identity User Data?

I’m trying to get the stored data of all users using Netlify Identity.

I’ve tried setting up a cloud function to list them all, but I can only retrieve some of the users from the ${identity.url}/admin/users route, & not all of them.

Is there a way to navigate through Identity users or implement some other method so that I can get them all?

Have you tried paginating? If you look at how our UI handles fetching the list as explained here, you should be able to do the same thing:

1 Like

Awesome, thank you so much @fool! Was able to copy the GET request that Netlify uses on the Identity page in the dashboard.

1 Like