disableTotpMfa abstract method

  1. @POST.new('/users/@me/mfa/totp/disable')
Future<void> disableTotpMfa({
  1. @Body.new() required DisableTotpRequest body,
})

Disable TOTP multi-factor authentication.

Disable TOTP multi-factor authentication on the current account. Requires sudo mode verification for security.

body - Name not received - field will be skipped.

Implementation

@POST('/users/@me/mfa/totp/disable')
Future<void> disableTotpMfa({@Body() required DisableTotpRequest body});