Get the users with Unverified Emails using Query vs List View #inSalesforce

Get the users with Unverified Emails using Query vs List View #inSalesforce


Using Query: 

Prerequisite:  Manage Multi-Factor Authentication in API Permission should be assigned to the User

SELECT ExternalId,HasUserVerifiedEmailAddress,Id,UserId FROM TwoFactorMethodsInfo where HasUserVerifiedEmailAddress = false


Using List View:

Create a list view on the User Object [Set Up | User | List View]

Criteria: User Verified Email equals False, Save



Comments