disable2FAWithHttpInfo method
Disable 2FA
Disables 2FA for the user (requires password confirmation)
Note: This method returns the HTTP Response.
Parameters:
- TwoFactorDisableRequest twoFactorDisableRequest (required):
Implementation
Future<Response> disable2FAWithHttpInfo(TwoFactorDisableRequest twoFactorDisableRequest,) async {
// ignore: prefer_const_declarations
final path = r'/api/v1/auth/2fa/disable';
// ignore: prefer_final_locals
Object? postBody = twoFactorDisableRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}