Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.userBlocks.delete("id"); } main();
Remove all Brute-force Protection blocks for the user with the given ID.
Note: This endpoint does not unblock users that were blocked by a tenant administrator.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The user_id of the user to update.
User successfully unblocked.