How do I get MFA enrollment status from the Admin users search API?
I do see that this question has been asked before but I noticed that the Auth0 web admin actually shows a Raw JSON in the users section that includes a “guardian_authenticators” JSON key with the information I would like to retrieve. Is it possible, with an API call, to be able to return the same raw JSON information that Auth0 Manage already returns?
Here’s an example of one user returned JSON object with details in “guardian_authenticators”
“guardian_authenticators”: [
{
“id”: “sms|dev_g1ozj9WB1tIJp9vS”,
“type”: “sms”,
“confirmed”: true,
“name”: “+1 XXXXXX19XX”,
“created_at”: “2020-02-18T00:24:30.000Z”,
“enrolled_at”: “2020-02-18T00:24:40.000Z”,
“last_auth_at”: “2020-02-18T00:25:41.000Z”
},
{
“id”: “recovery-code|dev_mv01QsUi3kSCNbQy”,
“type”: “recovery-code”,
“confirmed”: true,
“created_at”: “2020-02-18T00:24:25.000Z”,
“enrolled_at”: “2020-02-18T00:24:41.000Z”
}
]
As displayed in the “Raw JSON” tab of the Users object in the Users list in Auth0 Manage