loginWithWebauthnMfa abstract method
- @POST.new('/auth/login/mfa/webauthn')
- @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,
});