@@ -207,7 +207,7 @@ class Account extends Service {
207207
208208 }
209209
210- /// Add Authenticator
210+ /// Create Authenticator
211211 ///
212212 /// Add an authenticator app to be used as an MFA factor. Verify the
213213 /// authenticator using the [verify
@@ -260,13 +260,12 @@ class Account extends Service {
260260 /// Delete Authenticator
261261 ///
262262 /// Delete an authenticator for a user by ID.
263- Future deleteMfaAuthenticator ({required enums.AuthenticatorType type, required String otp }) async {
263+ Future deleteMfaAuthenticator ({required enums.AuthenticatorType type}) async {
264264 final String apiPath = '/account/mfa/authenticators/{type}' .replaceAll ('{type}' , type.value);
265265
266266 final Map <String , dynamic > apiParams = {
267267
268- 'otp' : otp,
269-
268+
270269 };
271270
272271 final Map <String , String > apiHeaders = {
@@ -280,7 +279,7 @@ class Account extends Service {
280279
281280 }
282281
283- /// Create 2FA Challenge
282+ /// Create MFA Challenge
284283 ///
285284 /// Begin the process of MFA verification after sign-in. Finish the flow with
286285 /// [updateMfaChallenge] (/docs/references/cloud/client-web/account#updateMfaChallenge)
@@ -1150,7 +1149,7 @@ class Account extends Service {
11501149
11511150 }
11521151
1153- /// Create phone verification (confirmation)
1152+ /// Update phone verification (confirmation)
11541153 ///
11551154 /// Use this endpoint to complete the user phone verification process. Use the
11561155 /// **userId** and **secret** that were sent to your user's phone number to
0 commit comments