Remove all authenticators registered to a given user ID, such as OTP, email, phone, and push-notification. This action cannot be undone. For more information, review Manage Authentication Methods with Management API.
DELETE
/
users
/
{id}
/
authenticators
TypeScript
Copy
Ask AI
import { ManagementClient } from "auth0";async function main() { const client = new ManagementClient({ token: "<token>", }); await client.users.authenticators.deleteAll("id");}main();