getWebauthnMfaOptions abstract method

  1. @POST.new('/auth/login/mfa/webauthn/authentication-options')
Future getWebauthnMfaOptions({
  1. @Body.new() required MfaTicketRequest body,
})

Get WebAuthn MFA options.

Retrieve WebAuthn challenge and options for multi-factor authentication. Requires the MFA ticket from initial login.

body - Name not received - field will be skipped.

Implementation

@POST('/auth/login/mfa/webauthn/authentication-options')
Future<WebAuthnAuthenticationOptionsResponse> getWebauthnMfaOptions({
  @Body() required MfaTicketRequest body,
});