We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2186d83 + feef4c8 commit f624b05Copy full SHA for f624b05
src/main/kotlin/io/appwrite/services/Users.kt
@@ -1146,6 +1146,25 @@ class Users(client: Client) : Service(client) {
1146
)
1147
}
1148
1149
+ /**
1150
+ * Delete authenticator
1151
+ *
1152
+ * Delete an authenticator app.
1153
1154
+ * @param userId User ID.
1155
+ * @param type Type of authenticator.
1156
+ * @return [io.appwrite.models.User<T>]
1157
+ */
1158
+ @Throws(AppwriteException::class)
1159
+ suspend fun deleteMfaAuthenticator(
1160
+ userId: String,
1161
+ type: io.appwrite.enums.AuthenticatorType,
1162
+ ): io.appwrite.models.User<Map<String, Any>> = deleteMfaAuthenticator(
1163
+ userId,
1164
+ type,
1165
+ nestedType = classOf(),
1166
+ )
1167
+
1168
/**
1169
* List factors
1170
*
0 commit comments