using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.AuthenticationMethods.ListAsync(); }}
Retrieve detailed list of authentication methods belonging to the authenticated user.
GET
https://{host}/me/v1
/
authentication-methods
C#
using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.AuthenticationMethods.ListAsync(); }}