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;
[
{
"user_id": "auth0|some-user-id",
"email": "fugnolaydsdi@vusra.com",
"picture": "some-url",
"name": "AYUBA DAUDA"
}
{
"user_id": "auth0|some-user-id",
"email": "fugnolaydsdi@vusra.com",
"picture": "some-url",
"name": "AYUBA DAUDA"
}
]
I need it to include the ‘email_verified’ field, please how do i go about this