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