verifyTotp abstract method
- @POST.new("/two-factor/verify-totp")
- @Body.new() required TwoFactorVerifyBody body,
Verifies a TOTP code, completing sign-in when 2FA gated it.
Implementation
@POST("/two-factor/verify-totp")
Future<Result<SignInEmailResponse>> verifyTotp({
@Body() required TwoFactorVerifyBody body,
});