For AI agents: a documentation index is available at /llms.txt. A markdown version of this page is available at the same URL with .md appended (or via Accept: text/markdown).
Skip to main content

Manage MFA for a user

The manageMFA method is used to trigger manage MFA flow for users, allowing users to update their MFA settings. The method takes LoginParams which will used during custom verifiers. If you are using default login providers, you don't need to pass LoginParams. If you are using custom JWT verifiers, you need to pass the JWT token in loginParams as well.

Usage

val manageMFACF = web3Auth.manageMFA()

manageMFACF.whenComplete{_, error ->
if (error == null) {
// Handle success
} else {
// Handle error
}
}
On this page