Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.users.multifactor.invalidateRememberBrowser("id"); } main();
Invalidate all remembered browsers across all authentication factors for a user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the user to invalidate all remembered browsers and authentication factors for.
Remembered browsers for MFA invalidated.