Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 686 Bytes

delete-mfa-authenticator.md

File metadata and controls

24 lines (19 loc) · 686 Bytes

import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType;

Client client = new Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("<YOUR_PROJECT_ID>") // Your project ID .setSession(""); // The user session to authenticate with

Account account = new Account(client);

account.deleteMfaAuthenticator( AuthenticatorType.TOTP, // type new CoroutineCallback<>((result, error) -> { if (error != null) { error.printStackTrace(); return; }

    System.out.println(result);
})

);