I am getting on organization users through the management API using the organization ID. This works fines, however, the ‘email_verified’ field for each user is not returned and i need to use it for a logic. Below is the sample of the returned object;
Thank you for reaching out to the Auth0 Community!
I understand that you would like to get the email_verified property for users in a specific organization.
First, I’d like to clarify that the Get members who belong to an organization endpoint will only return the attributes you observed, namely name, user_id, email, and picture.
To get the email_verified attribute, you’ll need to call the Get a User endpoint and pass the ID of the user from that particular organization.
Doing so will allow you to abstract the email_verified attribute of the organization user and use it for your custom logic.
Please let me know if there’s anything else I can do to help.