using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Factors.ListAsync(); }}
List of factors enabled for the Auth0 tenant and available for enrollment by this user.
GET
https://{host}/me/v1
/
factors
C#
using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Factors.ListAsync(); }}