loginWithWebauthnMfa abstract method

  1. @POST.new('/auth/login/mfa/webauthn')
Future<AuthTokenWithUserIdResponse> loginWithWebauthnMfa({
  1. @Body.new() required WebAuthnMfaRequest body,
})

Login with WebAuthn MFA.

Complete login by verifying WebAuthn response during MFA. Requires the MFA ticket from initial login attempt.

body - Name not received - field will be skipped.

Implementation

@POST('/auth/login/mfa/webauthn')
Future<AuthTokenWithUserIdResponse> loginWithWebauthnMfa({
  @Body() required WebAuthnMfaRequest body,
});