Obtain a list of verified and unverified users

I am trying to gather data on the amount of users we have verified vs unverified. However, I cannot locate any of that information within auth0. Is there a way to pull that data. As well as users that have the most activity?

Hi @jemaledinibrahim ,

Welcome to the Auth0 Community, and sorry about the late reply!

To export the list of verified and unverified users, you can call the
GET
/api/v2/users endpoint with

q: email_verified:true or q:email_verified:false
fields: email

Regarding retrieving users with the most activities, we don’t have an API call to obtain such details. However, you can export the Auth0 logs to a log stream service and check/filter the user activities from there.

Ref:

Hopefully the above details are helpful to you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.