using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.AuthenticationMethods.CreateAsync( new CreatePasskeyAuthenticationMethod { Type = "passkey" } ); }}
Start the enrollment of a supported authentication method.
Start the enrollment of a supported authentication method.
POST
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.CreateAsync( new CreatePasskeyAuthenticationMethod { Type = "passkey" } ); }}