Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.users.refreshToken.delete("user_id"); } main();
Delete all refresh tokens 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 get remove refresh tokens for
Refresh token deletion request accepted.